Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. x = int(input('Digite o valor de X: '))
  2. y = int(input('Digite o valor de Y: '))
  3.  
  4. z = (x**2 + y**2)**0.5
  5.  
  6. print ('Z vale: ',z)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement