| CodeRams Practice Problem Archive |
|---|
| Finished |
Basic math operations are very important in programming applications. In this problem, your task is to calculate the product of two integers, multiplied by three.
The first line of input contains a positive integer a no greater than 2000. The second line of input contains a positive integer b no greater than 2000.
Print a single positive integer c: the product of a and b multiplied by 3.
3 5
45
| Name |
|---|


