0

# Python code to demonstrate the working of gcd()

# importing “math” for mathematical operations

import math

# prints 12

print(“The gcd of 60 and 48 is : “, end=””)

print(math.gcd(60, 48))

Pavatharni . S Asked question June 6, 2023