Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # _*_ coding: utf-8 _*_
- a = float(input())
- b= float(input())
- c = ((a**2 + b**2)**0.5) #Я решил сделать через действительное число, чтобы можно было писать любые значения катетов. Так можно ведь?
- print (a + b + c)
Add Comment
Please, Sign In to add comment