Code Golf Challenge P1 - Product

View as PDF

Submit solution

Points: 3 (partial)
Time limit: 2.0s
Memory limit: 64M

Author:
Problem type

Given a and b, calculate a \times b.

Input Specification

The first line will contain two integers, a, b (1 \le a, b \le 10^9).

Output Specification

On the first line, print the product of a \times b.

Scoring

Let L represent the number of characters in your solution.

If L is less than 1 000 characters, your score will be \min(1, 1-\frac{L-200}{1000}) \times 100\%.

Otherwise, your score will be 0.

Sample Input

12 3

Sample Output

36

Comments

There are no comments at the moment.