XJTU_Python_Problems/codes/3.py

6 lines
79 B
Python

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