/*
  DO NOT MODIFY THIS FILE.
  See coreJava.code
 */


class A
{
  int x;
  long y;

  A(int x, long y) {
    this.x = x;
    this.y = y;
  }
}

public class coreJava 
{
  public static void p(String s)
  {
    System.out.println(s);
  }

  public static void p(boolean b)
  {
    System.out.println("" + b);
  }

  static A createA(int x, long y)
  {
    return new A(x, y);
  }

  public static void main(String[] args)
  BODY    
}
