* Teorema de Pythagoras usado en Pippy

import math from math import sqrt

print "This is the Pythagoras Theorem"

a=float(raw_input("Type a ="))

b=float(raw_input("Type b ="))

c=sqrt((a*a)+(b*b))

print "c =",c

Python/Code/Pythagoras (last edited 2010-09-20 20:39:26 by Kmilo)