import sys, math s = [float(i) for i in input().split()] sum = 0 for i in s: sum += (i**2) print(math.sqrt(sum))