x = int(input("Nhập x: ")) GiaiThua = 1 i = 1 while (i <= x): GiaiThua *= i i += 1 print(x,"! =", GiaiThua)