본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#67 백준 파이썬 [10872] 팩토리얼

https://www.acmicpc.net/problem/10872

 

#Solution

num = int(input())
result = 1
temp = 1

while temp <= num:
    result = temp * result
    temp += 1

print(result)