H. Medal
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

ACM is the world's most influential collegiate programming competition, known as the "Olympics of Programming," requiring teams to solve complex algorithmic problems efficiently within a limited time.

In the ACM competition, the rules for award allocation stipulate that gold, silver, and bronze medals are awarded to the top $$$10\%\ ,20\%$$$, and $$$30\%$$$ of valid teams, respectively, with rounding up applied.

Now given the number of valid teams $$$n$$$, please answer how many teams get gold, silver, and bronze medals, respectively.

Input

One line containing a number $$$n\ (100 \le n \le 500)$$$.

Output

One line containing $$$3$$$ numbers, the number of gold, silver, and bronze medals.

Example
Input
123
Output
13 25 37