What is the output of following program? public class Test{ …

What is the output of following program? public class Test{            static int start = 2;     final int end;     public Test(int x) {         end = x;     }     public void fly(int distance) {         System.out.print(end-start+” “);         System.out.println(distance);     }     public static void main(String []args){           Test test = new Test(10);         test.fly(7);     }   }