from math import gcd
print(gcd(gcd(36, 54), gcd(18, 15)))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
from math import gcd
print(gcd(gcd(36, 54), gcd(18, 15)))