Problem A
Class Photo

Every year, the Mines freshman class assembles on the football field to take a class photo. Usually, the students arrange themselves to create a giant M. Unfortunately, the students took too long to set up, causing Blaster to get hungry and eat the ropes outlining the M. Thinking quickly, the teachers assemble the students in a rectangle. Given that this rectangle is $w$ people by $l$ people, how many students are in the freshman class?
Input
The first line of input contains a single integer $w$ ($1 \leq w \leq 10^4$), the width of the rectangle.
The second line of input contains a single integer $l$ ($1 \leq l \leq 10^4$), the length of the rectangle.
Output
The only line of output should be a single integer, the total number of students in the freshman class.
Sample Input 1 | Sample Output 1 |
---|---|
50 110 |
5500 |
Sample Input 2 | Sample Output 2 |
---|---|
200 20 |
4000 |