Python/백준
[10872] 팩토리얼
류경혜
2022. 6. 19. 16:00
n = int(input())
result = 1
if n > 0:
for i in range(1, n+1):
result *= i
print(result)