def ask(x): print('?', x, flush = True) y = int(input()) return y y1 = ask(1) y2 = ask(2) a = y2 - y1 b = y1 - a print('!', a, b, flush = True) exit()