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