a, b, c, d = float(input()), float(input()), float(input()), float(input())
sum = a + b + c + d
print(sum)
# Короче:
print(float(input()) + float(input()) + float(input()) + float(input()))
a, b, c, d = float(input()), float(input()), float(input()), float(input())
sum = a + b + c + d
print(sum)
# Короче:
print(float(input()) + float(input()) + float(input()) + float(input()))