import java.util.*; import java.io.*; public class Echo5 { public static void main(String[] args) throws Exception { // // this works for Java 1.5 and onwards // Scanner s = new Scanner(System.in); while (s.hasNextLine()) { System.out.println(s.nextLine()); } } }