Problem of the day
Length and breadth must be an integer value and the area will always be in the range of integers.
The first line of input contains two integers, both separated by a single space denoting the length and breadth respectively.
The only line of output prints the area of the rectangle
1 <= L, B <= 10ˆ2
4 20
80
Length of the rectangle is 4 and breadth is 20.
Hence the area of the rectangle is (length*breadth).
So the answer is 4*20=80.