6 lines
86 B
Python
6 lines
86 B
Python
import math
|
|
|
|
a=int(input())
|
|
b=int(input())
|
|
c=a**2+b**2
|
|
print(math.floor(math.sqrt(c))) |