n=int(input()) s=input() if s.count("Q")==n: for i in range(1,20): if n==i**i: print("Q"*i) break else: print(-1) else: print(-1)