import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(sc.hasNext()) {
String a = sc.nextLine();
System.out.println(a);
}
sc.close();
}
}
sc.next() - 공백을 입력 받을 수 없음.
sc.nextLine() - 공백을 넣어 Enter를 기준으로 한 줄을 입력 받을 수 있음