#!usr/bin/python
# By Ala'a Hammad
# Email :ip7@live.de
num = 1
x = raw_input('Insert the number please ')
x = int(x)
while x > 1:
num = x * num
x = x-1
print(num)
Add comment
To add a comment, please : Login or Sign up