small factorial codechef solution

Solutions on MaxInterview for small factorial codechef solution by the best coders in the world

showing results for - "small factorial codechef solution"
Federica
27 May 2018
1t=int(input())
2for i in range(t):
3  x=int(input())
4  count=1
5  for i in range(x):
6    count=count*i
7   print(count)