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