DEBSOURCES
Skip Quicknav
sources / pyannotate / 1.2.0-2 / example / gcd.py
12345678
def main(): print(gcd(15, 10)) print(gcd(45, 12)) def gcd(a, b): while b: a, b = b, a%b return a