day1/exercise/gcd_another.py
author nishanth
Wed, 03 Mar 2010 14:14:45 +0530
changeset 375 30124fd5eb7e
parent 64 333092b68926
permissions -rw-r--r--
added the missing question mark

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)