https://www.acmicpc.net/problem/11718

1
2
3
4
5
6
7
8
9
10
11
import java.util.Scanner;
 
public class Main{
   public static void main(String[] args) {
       Scanner sc = new Scanner(System.in);
       while(sc.hasNextLine()){
              System.out.println(sc.nextLine());
       }
       sc.close();
   }
}
cs


+ Recent posts