About programming :))
Python
Код: Выделить всё
def fact(n):
f = 1L
while n > 1:
f *= n
n -= 1
return f