day1/exercise/gcd_another.py
author Puneeth Chaganti <punchagan@fossee.in>
Thu, 08 Oct 2009 19:10:53 +0530
changeset 71 d0679d2f9339
parent 64 333092b68926
permissions -rw-r--r--
Added section and subsections to Day2 Session2.

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)