from sys import stdin def main(): input = lambda: stdin.readline()[:-1] M, D = map(int, input().split()) print(M + D) main()