KateWilson

Периметр прямоугольного треугольника

Jul 24th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. a = int(input())
  2. b = int(input())
  3. c = ((a**2 + b**2)**0.5)
  4. print('Периметр треугольника равен',a+b+c)
Add Comment
Please, Sign In to add comment