알고리즘 - 백준, 11718 그대로 출력하기

jodbsgh·2022년 12월 20일
0

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main{
	public static void main(String[] args) throws IOException {
    	BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        
        String str;
        
        while (( str = br.readLine()) != null){
        	System.out.println(str);
        }
    }
}
profile
어제 보다는 내일을, 내일 보다는 오늘을 🚀

0개의 댓글