백준 #3765번 Celebrity jeopardy

jhj·2024년 2월 7일

백준 JAVA

목록 보기
155/583
import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		
		String a;
		while(sc.hasNext()) {
			a = sc.nextLine();
			System.out.println(a);
		}
		sc.close();
	}
}
profile
개발자를 꿈꾸는

0개의 댓글