# coding: utf-8 a,b = (int(x) for x in input().rstrip().split()) s = input().rstrip() ans = str(a + b) + " " + s print(ans) #