numbers = list(map(int, input().split())) total = 0 for num in numbers: total += num print(total)