← Back to List

28352번: 10! ↗

Solutions

Python 3
72 B | 72 chars
n = int(input())
s = 6

for i in range(11, n + 1):
    s *= i

print(s)