public class Demo3
  {
  public static void main(String[] args)
    {
    int x,y;
    short z;

    x = 30000;
    y = 30000;

    z = x + y;
    System.out.println(x);
    }
  }