// 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 Arithmetic1 {
  public static void main (String args[]) {
    System.out.println(34 + 56);
    System.out.println(26 - 3);
    System.out.println(3 * 4);
    System.out.println(4 / 2);
  }
}
