def query(x): print(f'? {x}') r = int(input()) return r b = query(0) y = query(1) a = y - b print(f'! {a} {b}')