class ControlStatements {

	// need to run this program with one argument. Will tell you if its over or under 50.
	public static void main(String args[]) {
		int argVal;

		argVal = Integer.parseInt(args[0]);

		if (argVal > 50) {
			System.out.print("The number you entered " + argVal + ", is greater than 50.");
		}
		else {
			System.out.print("The number you entered " + argVal + ", is less than or equal to 50.");
		}
	}

}

