/*****************************************************************
** Operators - demonstrate precedence in numeric operators
**
** Multiplication (*) and division (/) take precedence over
** addition (+) and subtraction (-).  The output of this program
** is
**
**    -3
**    21
**
** (c) Scott MacKenzie, 2000                             
******************************************************************/
public class Operators
{
   public static void main(String[] args)
   {
      int i =  12 - 5  * 3;
      int j = (12 - 5) * 3;

      System.out.println(i);
      System.out.println(j);
   }
}

