import java.util.Scanner;

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

		/*
		 * Set up a Scanner to read from the keyboard
		 */

		Scanner kb = new Scanner(System.in);
	
		/*
		 * Ask the user to enter two integers, compute the product,
		 * and print the result to the screen.
		 */

		System.out.println("Please enter width of box");
		int width = kb.nextInt();

		System.out.println("Please enter height of box");
		int height = kb.nextInt();

		int area = width * height;

		System.out.println("area = " + area);
	}
}
