import java.util.Scanner;

class Jan24Part2 {

	public static void main(String[] args) {

		// initialize a scanner to read from the keyboard
		Scanner kb = new Scanner(System.in);

		// ask the user to enter in height and width, read and store as integers
		System.out.println("Enter two integers");
		int height = kb.nextInt();
		int width = kb.nextInt();

		// print "width is larger" if the value of the width is larger than the value of the height
		if (width > height) {
			System.out.println("width is larger");
		}

		// print "width is odd" if the value of the width is odd
		if (width % 2 == 1) {
			System.out.println("width is odd");
		}

		// print "width is odd and larger than height" if the value in width is odd and larger
		// than the value in height
		if (width % 2 == 1 && width > height) {
			System.out.println("width is odd and larger than height");
		}
		
		// print "width is odd or width is larger" if width is odd or width is larger than height
		if (width % 2 == 1 || width > height) {
			System.out.println("width is odd or larger than height");
		}

		// print "width is not larger than height" if width is not larger than height
		if (width <= height) {
			System.out.println("widht is not larger than height");
		}
		
		// or (height >= width) 
		// or (!(width > height))
		
		// print "area is odd" if the product of height and width is odd
		if ((width * height) % 2 == 1) {
			System.out.println("area is odd");
		}







		





	}
}
