/*****************************************************************
** Numbers - program to demonstrate simple operations on numbers
**
** Three integer variables are declared, x, y, and z. ...
**
** The program is compiled, as usual, and executed as follows:
**
**    PROMPT>java Numbers
**
** The following output appears on the CRT display:
**
**    1 + 1 = 2
**
** (c) Scott MacKenzie, 2000                             
******************************************************************/
public class Numbers
{
   public static void main(String[] args)
   {
      int x;
      x = 1;
      int y = 1;
      int z = x + y;
      System.out.print("1 + 1 = ");
      System.out.println(z);
   }
}

