[백준] 11718번: 그대로 출력하기

군자·2024년 3월 14일

BOJ

목록 보기
5/6

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

import java.io.*;
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개의 댓글