using System;
using static System.Console;
int width;
width = 120;
int length;
length = 250;
int totalArea;
totalArea = width * length;
WriteLine(totalArea);