Advertisement
Guest User

Untitled

a guest
May 24th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public static void main(String[] args) {
  2.  
  3.  
  4. Scanner in = new Scanner(System.in);
  5. while(in.hasNext()){
  6. String station = in.nextLine();
  7. String numbers = in.nextLine();
  8. String output = station+'\t'+numbers;
  9. System.out.println(output);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement