public class problem {

  static Integer integer = null;

  public static void problem(){
    System.out.println( integer.toString() );
  }

  public static void main (String[] args) {
    problem();
  }

}