import math
sqrt = math.sqrt
a2 = int(input())
b2 = int(input())
c = sqrt((a2 + b2) * 2)
print(round(c,2))

3 条评论

  • 1