day1/exercise/pytriads.py
author Puneeth Chaganti <punchagan@fossee.in>
Wed, 21 Oct 2009 16:57:28 +0530
changeset 137 4dea7c5e1bf5
parent 94 8c92864c184b
child 354 5dc6c3673f9d
permissions -rw-r--r--
Minor Typo edits.

def is_perfect_square(n):
    i = 1
    while i * i < n:
        i += 1
    return i * i == n, i

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

a = 3
while a < 100:
    b = a + 1
    while b < 100:
        is_ps, c = is_perfect_square((a * a) + (b * b))
        if is_ps and gcd(a, b) == 1:
            print a, b, c
        b += 1
    a += 1