def get_password(ans):
    ret=[]
    for c in ans:
        ret.append(chr(c+ord("a")))
    return "".join(ret)
N=int(input())
ans=[0 for _ in range(N)]
i=0
phrase=get_password(ans)
print(f"? {phrase}")
match=int(input())
if match==N:
    exit(print(f"! {phrase}"))
while 1:
    # matchが減るなら一つ前が正解。変わらないなら繰り返す。増えたらそれが正解。
    while ans[i]<25:
        pre=match
        ans[i]+=1
        phrase=get_password(ans)
        if ans[i]==25:
            match+=1
            break
        print(f"? {phrase}")
        match=int(input())
        if match>pre:break
        elif match<pre:
            ans[i]-=1
            phrase=get_password(ans)
            match+=1
            break
    if match==N:
        exit(print(f"! {phrase}"))
    i+=1