# Read the input line line = input().strip() # Split the line into two parts a_str, b_str = line.split() # Convert to integers a = int(a_str) b = int(b_str) # Calculate the sum sum_result = a + b # Print the result print(sum_result)