// Another test of arithmetic operators
// Author: Michael S. Branicky, 09/07/2006, modified 09/05/2007
// Source: B. Ericson and M. Guzdial,
//    Intro. to Computing and Programming w/Java: A Multimedia Approach

public class Arithmetic2 {
  public static void main (String args[]) {
    System.out.println((3 + 2) * 4);
    System.out.println(3 + 2 * 4);
    System.out.println(9 / 5 * -3 + 32);
    System.out.println(9 % 4);
  }
}
