T=int(input()) for t in range(T): l=1e-6 r=12.22*1e74 for _ in range(24): mid=(l*r)**.5 print("?","{:10f}".format(mid),flush=True) S=input() if S=="Yes": l=mid elif S=="No": r=mid else: exit() ans=l print("!",ans)