import math n = input().split() sum = 0 for i in n: sum += abs(float(i))**2 print(math.sqrt(sum))