a,b=map(int,input().split()) if a==0: print(b) elif b<0: print(a+b) else: print(str(a)+str(b))