#C9367. Multiply Two Integers

    ID: 53452 Type: Default 1000ms 256MiB

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:

result=x×yresult = x \times y

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.

## sample
3 7
21