Poj Solution 3062

http://poj.org/problem?id=3062

import java.util.*;  
      
    public class Main {  
      
        public static void main(String[] args) {  
            Scanner cin = new Scanner(System.in);  
              
            while(cin.hasNext())  
            {  
               System.out.println(cin.nextLine());  
           }  
       }  
   }  

											
This entry was posted in poj. Bookmark the permalink.