Guest User

Untitled

a guest
Nov 20th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. from math import sqrt
  2. sidea=float(input("length of sidea is :"))
  3. sideb=float(input("length of sideb is :"))
  4. hypotenuse=sqrt((sidea**2)+(sideb**2))
  5. print("length of hypotenuse is:", hypotenuse)
Add Comment
Please, Sign In to add comment