day1/exercise/pytriads.py
author Puneeth Chaganti <punchagan@fossee.in>
Mon, 12 Oct 2009 16:46:47 +0530
changeset 104 896f96b9de3b
parent 94 8c92864c184b
child 354 5dc6c3673f9d
permissions -rw-r--r--
Added Day2 Quiz.

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