#C9367. Multiply Two Integers
Multiply Two Integers
Multiply Two Integers
You are given two integers. Your task is to compute and print the product of these two integers.
The multiplication operation is defined as:
For example, if the input is 3 7
, then the output should be 21
.
This is a basic problem meant to test your ability to read input, perform arithmetic calculations, and print output.
inputFormat
The input consists of a single line containing two integers separated by a space.
outputFormat
Output a single integer which is the product of the two input integers.
## sample3 7
21