#a,b=input().split() #a=int(a) #b=int(b) #N=a+b #s=input() #print(N,s) a,b=map(int,input().split()) N=a+b s=input() print(N,s)