pythagorus (137B)
1 #!/usr/bin/python 2 base = float(input("base: ")) 3 height = float(input("height: ")) 4 5 hyp = ((base ** 2) + (height ** 2)) ** 0.5 6 print(hyp)