import java.util.Scanner; public class Popcreasetwo{ public static void main(String []args) { Handlethat theOne=new Handlethat(); Scanner in=new Scanner(System.in); System.out.println("Enter the data. "); int[] ary1 = new int[1000]; int[] ary2 = new int[1000]; for(int y=0; y < 50; y++){ ary1[y]=in.nextInt(); ary2[y]=in.nextInt(); } theOne.theMethod(ary1,ary2); theOne.thePrintMethod(ary1, ary2); }//end of main method }// end of popcrease class Handlethat{ public void theMethod(int [], int[]){ }//end of the method public void thePrintMethod(int [], int[] ){ } }// end of class handlethat