Skip to content
Snippets Groups Projects
9.py 71 B
Newer Older
hacker717's avatar
hacker717 committed
n = int(input())

o = 1

for i in range(2, n + 1):
    o *= i

print(o)