728x90
반응형
단순 팩토리얼 문제다.
ans = 1
for i in range(1, int(input())+1):
ans *= i
print(ans)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10951번 A+B - 4(python) (0) | 2020.02.15 |
---|---|
백준 알고리즘 10950번 A+B - 3(python) (0) | 2020.02.15 |
백준 알고리즘 10871번 X보다 작은 수(python) (0) | 2020.02.15 |
백준 알고리즘 10870번 피보나치 수 5(python) (0) | 2020.02.15 |
백준 알고리즘 10869번 사칙연산(python) (0) | 2020.02.15 |