#include <stdio.h>;

int main(void)
{
	int weight, high;

	puts("長方形の面積を求めます。");

	printf("横幅：\n");	scanf("%d", &weight);
	printf("高さ：\n");	scanf("%d", &high);

	printf("面積は%dです。\a\n", weight * high);

	return 0;
}
