diff --git a/Factorial.py b/Factorial.py new file mode 100644 index 00000000..ce4ff9f5 --- /dev/null +++ b/Factorial.py @@ -0,0 +1,10 @@ + +# https://www.facebook.com/sandeepmore.more.5/posts/1261804104181092 +# subscribed by code House + + +no=int(input("Enter any number:")) +print("Factor of {} is given below:".format(no)) +for i in range (i,no+1): + if no%i==0: + print(i,end="")