diff --git a/f.py b/f.py index c1eb5f0..bf26fa4 100644 --- a/f.py +++ b/f.py @@ -1,3 +1,6 @@ -a=10 -b=56 -print('Сумма чисел a и b =',a+b) \ No newline at end of file +import math + +a=int(input()) +b=int(input()) +c=a**2+b**2 +print(math.floor(math.sqrt(c))) \ No newline at end of file