728x90
반응형

단순 팩토리얼 문제다.

ans = 1
for i in range(1, int(input())+1):
    ans *= i
print(ans)

728x90
반응형

+ Recent posts