53. What will be the output?

    public class Test {
      public static void main( String[] args ) {
      int i = 1;
      int j = i++;
          if( ( i > ++j ) && ( i++ == j ) ) {
              i += j;
          }
      System.out.println( i + " " + j );
      }
    }
    
   Select 1 correct answer:
A. 2 1
B. 1 1
C. 2 2
D. 1 2