S = list(input()) if S[-2]=="a" and S[-1]=="i": S[-2]="A" S[-1]="I" else: S.append("-AI") print("".join(S))