from sys import stdin def main(): A, B = map(int, input().split()) print(A + B) input = lambda: stdin.readline()