백준 11719 java
-
boj)11719 - 그대로 출력하기 2PS/boj 2020. 11. 5. 14:56
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 import java.io.*; public class boj_11719 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); static String str; public static void main(String[] args) throws IOException { while (( str = br.readLine()) != null ) { bw.write(str + "\n"); } bw.flus..