백준 10872번 팩토리얼 파이썬
2022.03.07 16:40
백준 10872번 팩토리얼 파이썬 코드이다.
n = int(input())
t = 1
for i in range(1, n + 1):
t = t * i
print(t)