day1/exercise/gcd.py
author Puneeth Chaganti <punchagan@gmail.com>
Thu, 09 Dec 2010 14:34:40 +0530
branchscipyin2010
changeset 439 d85c3ed8545c
parent 428 ee689f7c3122
permissions -rw-r--r--
Updated day1/session1.tex and some image files.

def gcd(a, b):
    if a % b == 0:
        return b
    return gcd(b, a%b)

print gcd(5, 40)
print gcd(11, 60)