| # | Problem | Pass Rate (passed user / total user) |
|---|---|---|
| 11100 | Box Business |
|
Description
A store sells boxes based on the surface of boxes. Each unit area cost 4 dollars. Given the width, length, and height of a box, compute its sell price. For example, if the input is
5 3 2
which mean the box is of width 5, length 3, and height 2, the surface of the box is
2*(5*3+3*2+2*5) = 62 unit.
So the sell price is 62*4 = 248. The output is
The sell price of the box is 248 dollars.
Input
The input has three integers, and there is a space between each pair of integers. The range of integers is (0,999).
Output
Output should contain the following words in a line, "The sell price of the box is ? dollars." where ? is an integer for the sell price of the box. A new line is required after the output.