import java.util.*;
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
while (sc.hasNext()) { // 입력 횟수가 주어지지 않았기 때문에
System.out.println(sc.nextLine());
}
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[백준] 15964번 (0) | 2023.01.22 |
---|---|
[백준] 9086번 (0) | 2023.01.22 |
[백준] 10809번 (0) | 2023.01.22 |
[백준] 2754번 (0) | 2023.01.22 |
[백준] 2744번 (0) | 2023.01.22 |