A Pythagorean triple is a set of positive integers (a,b,c) like a2 + b2 = c2. Write a function "ispythag" that will receive 3 positive integers (a, b, c in that order) and will return 1 for true if they form a Pythagorean triple, or 0 for false if not.