summaryrefslogtreecommitdiff
path: root/testing/code/gcd.py
blob: 12e493568f807138dfb381d849544beda9b14944 (plain)
1
2
3
4
5
6
7
8
9
def gcd(a, b):
    while b != 0:
        a, b = b, a%b
    return a

def atoi(s):
    return int(s)