import java.math.BigInteger;

public class Ian
{
  public static void main(String[] args)
  {
    Integer i = new Integer(1);
    BigInteger j = BigInteger.valueOf(20);
    if (i.compareTo(j) < 0) {
    }
  }
} // class Ian
