Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import java.util.*;
  2.  
  3. public class Echo{
  4.  
  5. public static void main(String[] args){
  6. Scanner in = new Scanner(System.in);
  7. while(true){
  8. System.out.println(in.nextLine());
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement