이 코드의 아이디어는 [mswgen]님이 주셨습니다.
이 코드만 있으면 빈 페이지를 난장판으로 만들 수 있습니다!!
while True:
print()
x = input("얼마나 난장판을 만드실 건가요?")
x = int(x)
n_pactorial = 1
for n in range(1, x + 1):
n_pactorial *= n
pass
print(str(n_pactorial))
pass