day1/exercise/gcd_another.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 28 Oct 2009 15:53:33 +0530
changeset 228 238f3010c981
parent 64 333092b68926
permissions -rw-r--r--
Created and made first cut slides for session 2 day 2.

def gcd(a, b):
  if a - b == 0:
    return b
  if a > b:
    return gcd(b, a-b)
  else:
    return gcd(b, b-a)

def lcm(a, b):
    return (a * b) / gcd(a, b)

print lcm(21, 14)