a, b = map(int, input().strip().split(' ')) print(f"{a} + {b} = {a + b}")
a, b = map(int, input().strip().split(' ')) print( a, '+', b, '=', a + b)