가오리의 코딩일기

[10872] 팩토리얼 본문

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)

'Python > 백준' 카테고리의 다른 글

[2581] 소수  (0) 2022.07.06
더하기  (0) 2022.07.03
[10871] X보다 작은 수  (0) 2022.06.18
[10995] 별 찍기 - 20  (0) 2022.06.16
[2921] 도미노  (0) 2022.06.15