Java End-of-file

  • + 0 comments
    import java.io.*;
    import java.util.*;
    import java.text.*;
    import java.math.*;
    import java.util.regex.*;
    
    public class Solution {
    
        public static void main(String[] args) {
            /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
            Scanner x= new Scanner(System.in);
            for(int i=1; x.hasNext();i++){
                String input=x.nextLine();
                System.out.println(i+" "+input);
            }
        }
    }