4 lines
78 B
Python
4 lines
78 B
Python
import math
|
|
|
|
a,b=map(int,input().split())
|
|
print(round(math.sqrt(a**2+b**2),2)) |