/*****************************************************************
** YNumbers - same as Numbers.java, except using the york package
**
** (c) Scott MacKenzie, 2000
******************************************************************/
import york.*;

public class YNumbers
{
   public static void main(String[] args)
   {
      int x;
      x = 1;
      int y = 1;
      int z = x + y;
      York.print("1 + 1 = ");
      York.println(z);
   }
}

