SDE Path

Area of a Rectangle

Easy

Area of a Rectangle

Compute the area of a rectangle from its length and width.

Input format

A single line with two positive integers L and W, the length and width.

Output format

Print the area of the rectangle, which is L * W. The result can be large, so use a 64-bit integer type (long in Java, long long in C++).

Constraints

  • Values fit in a 64-bit signed integer
  • Trailing whitespace and a trailing newline are ignored by the judge

Read from stdin, write to stdout. Sample cases below show the exact format.

Sample cases

Example 1
Input
3 4
Expected output
12
Example 2
Input
10 5
Expected output
50