day1/exercise/gcd_another.py
author Shantanu <shantanu@fossee.in>
Wed, 28 Oct 2009 14:25:03 +0530
changeset 219 f6725f6bee41
parent 64 333092b68926
permissions -rw-r--r--
Session 4, Debugging and Testing.

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)