day1/exercise/gcd.py
author Shantanu <shantanu@fossee.in>
Sat, 31 Oct 2009 01:33:12 +0530
changeset 261 9cce24d00957
parent 64 333092b68926
child 428 ee689f7c3122
permissions -rw-r--r--
1 quiz, seesion5 plots, added links to reference.

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

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