
public class TestIncr {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
int a = 3;
int b = 10;
int c = 5;
		if ((b > a) || (c++ == 6))
		   	System.out.println("Danger Will Robinson!");
		System.out.println("c is now: "+c);
	}

}
