app/site-content/proposals/2009/08/06/gcd.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 14 Aug 2009 11:07:24 +0530
changeset 49 33c54f815fd5
parent 8 294ff7ac9cb6
permissions -rwxr-xr-x
Changed rank list.html to be consistent with review list.

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

print gcd (10, 20)