Limits 1s, 512 MB

In this problem, you need to write a code that prints an ASCII progress bar. In each test case, you will be given a floating point number representing the percentage.

Here is an example progress bar showing 60%:

[++++++....]

Given the percentage in floating point, floor it down to the nearest 10 (62 becomes 60, 65 becomes 60, 68 becomes 60 and so on).

Input

The input will contain a single floating point number PP (0.0P100.00.0 ≤ P ≤ 100.0).

Output

Print the ASCII progress bar followed by the progress percentage floored to the nearest integer.

Sample

InputOutput
62.3
[++++++....] 62%

Submit

Login to submit.

Statistics

88% Solution Ratio
kimiyukiEarliest, Feb '19
mahadi97Fastest, 0.0s
ReduancsLightest, 0 B
saitotaShortest, 49B
Toph uses cookies. By continuing you agree to our Cookie Policy.