Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

small factorial codechef solution

t=int(input())
for i in range(t):
  x=int(input())
  count=1
  for i in range(x):
    count=count*i
   print(count)
 
PREVIOUS NEXT
Tagged: #small #factorial #codechef #solution
ADD COMMENT
Topic
Name
8+3 =