Set 145 Practical Question

⭐ Q47. GCD (HCF) निकालने का प्रोग्राम

Example Code (Read Only):


a = int(input())
b = int(input())
print("GCD =", math.gcd(a,b))

Python Online Editor