#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); string S; cin >> S; if (S[S.size() - 2] == 'a' && S[S.size() - 1] == 'i') { S[S.size() - 2] = 'A', S[S.size() - 1] = 'I'; } else { S += "-AI"; } cout << S << '\n'; return 0; }