# coding: utf-8 # yukicoder No.353 ヘイトプラス from operator import add A, B = map(int, input().split()) print(add(A, B))