import operator def main(): A, B = map(int, input().split()) ans = operator.add(A, B) print(ans) main()