Answers for "codechef small factorial code in python"

1

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)
Posted by: Guest on May-21-2020

Python Answers by Framework

Browse Popular Code Answers by Language