diff --git a/program.py b/program.py new file mode 100644 index 0000000..0744fc5 --- /dev/null +++ b/program.py @@ -0,0 +1,11 @@ + #GCD of 2 numbers + + import math + +def gcdOfFactorial(m, n) : + return math.factorial(min(m, n)) + +n = int(input("Enter an number >>>")) +m = int(input("Enter an number >>>")) +© 2020 GitHub, Inc. +