코테/백준

백준 10926번 JAVA

Slow Motion~ 2022. 12. 21. 14:36
728x90
import java.util.Scanner;


public class Main {
   public static void main(String[] args) {         
           Scanner sc = new Scanner(System.in);
           String inputid = sc.next();
           sc.close();
          
                      System.out.print(inputid + "??!");                         
          
           
      }
}