// Test of if statements
// Author: Michael S. Branicky, 09/11/2007

public class IfDemo {
  public static void main (String args[]) {

    System.out.println("Before Condition 1");

    if (2>3) {
      System.out.println("Condition 1 is true");
    }

    System.out.println("Between Conditions 1 and 2");

    if (2<3) {
      System.out.println("Condition 2 is true");
    }

    System.out.println("After Condition 2");

  }
}
