// Aaron Tan
// Program to test out issues on int values
// in Quick Quiz Question 8 given out in week 6.

public class AboutInteger {

  public static void main(String[] args) {

    System.out.println(Integer.MAX_VALUE);

    System.out.println(Integer.MAX_VALUE + 1);
  }
}


