// yukicoder: No.536 人工知能 // 2019.4.18 bal4u #include #include #define gc() getchar() #define pc(c) putchar(c) int ins(char *s) // 文字列の入力 スペース以下の文字で入力終了 { char *p = s; do *s = gc(); while (*s++ > ' '); *--s = 0; return s - p; } void outs(char *s) { while (*s) pc(*s++); } char s[20]; int main() { int w; w = ins(s); if (w >= 2 && strcmp(s+w-2, "ai") == 0) strcpy(s+w-2, "AI"); else strcpy(s+w, "-AI"); outs(s), pc('\n'); return 0; }