
import java.util.Scanner;

class Sep2 {

	public static void main(String[] args) {

		// our code goes here

		// single line comment

		/* 
			multi-line comment
		*/

		Scanner kb = new Scanner(System.in);

		int height = 0;
		int width = 0;

		System.out.print("Please enter height: ");
		height = kb.nextInt();

		System.out.print("Please enter width: ");
		width = kb.nextInt();

		int area = height * width;
		System.out.println("The area is: " + area);


	}
}
