PROGRAMMING:A hundred dollars for a hundred chickens
Each rooster is 5 yuan, each hen is 3 yuan, each chick is 1 yuan, and each chicken must be bought as a whole. 100 yuan to buy 100 chickens (each kind of chicken must have), how many roosters, hens, chickens each? Please write a program to give a variety of purchase options.
###Input format:
The input is a positive integer n, which indicates that the first N possible schemes are required to be output. The order of the plan is from less to more roosters.
###Output format:
The numbers of cocks, hens and chicks in the first n schemes were shown. Each line shows a scheme with one space between the numbers and no space after the last number.
Note: if there are less than n schemes, output all possible schemes in sequence.
###Input example:
```in
five
```
###Output example:
The corresponding output is given here. For example:
```out
4 18 78
8 11 81
12 4 84
```
answer:If there is no answer, please comment
###Input format:
The input is a positive integer n, which indicates that the first N possible schemes are required to be output. The order of the plan is from less to more roosters.
###Output format:
The numbers of cocks, hens and chicks in the first n schemes were shown. Each line shows a scheme with one space between the numbers and no space after the last number.
Note: if there are less than n schemes, output all possible schemes in sequence.
###Input example:
```in
five
```
###Output example:
The corresponding output is given here. For example:
```out
4 18 78
8 11 81
12 4 84
```
answer:If there is no answer, please comment