import string a = input() st = set(string.ascii_lowercase) print(f"? {a}x") st.discard(a) while True: s = input()[3] if s == "I": break st.discard(s) t = st.pop() print(f"? {t}x")