Files
pythonProject/f.py
Victor Alexandrovich Tsyrenschikov 1c15418464 EspHome
2025-11-21 00:03:34 +05:00

6 lines
86 B
Python

import math
a=int(input())
b=int(input())
c=a**2+b**2
print(math.floor(math.sqrt(c)))