import math

a = [float(i)**2 for i in input().split()]

res = 0
for i in a:
    res += i

print(math.sqrt(res))