This commit is contained in:
Victor Alexandrovich Tsyrenschikov
2025-08-11 11:35:02 +05:00
parent 25fc158083
commit 1c15418464

9
f.py
View File

@@ -1,3 +1,6 @@
a=10
b=56
print('Сумма чисел a и b =',a+b)
import math
a=int(input())
b=int(input())
c=a**2+b**2
print(math.floor(math.sqrt(c)))