package yukicoder; import java.util.Scanner; public class No_536 {// 人工知能 public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.nextLine(); sc.close(); String str1 = s.substring(s.length() - 2, s.length());// 抜き出し String ans = ""; if (str1.equals("ai")) { ans = s.substring(0, s.length() - 2) + "AI";// 末尾がAIだったときの処理 } else { ans = s + "-AI"; // 末尾がAIではなかった時の処理 } System.out.println(ans);// 出力 } }