# Teemu is going backpacking. His mom has given him two types of fruits, apples and bananas. As Teemu's stomach doesn't distinguish between them, each apple or banana gives him one hour of energy for backpacking. Given that his mom gave him A apples and B bananas, calculate how many hours Teemu can backpack if he doesn't have any other source of energy.
# Input
# The first line of input consists of two space-separated numbers, A and B.
# Output
# Output a single integer O, number of hours before Teemu is out of energy.
# Constraints
# 0 \le A,B \le 10^6
# Example
# Input:
# 3 5
# Output:
# 8
# problem: given a string separated by spaces with 2 numbers, add them the 2 numbers up and output the sum
# approach
# split the string by space
# iterate through the list
# sum up
def sum_energy(s):
fruitList = s.split(" ")
totalEnergy = 0
for fruit in fruitList:
totalEnergy += int(fruit)
return totalEnergy
print(sum_energy(input()))