PROGRAMMING:Wusong, Jingyanggang
Wu Song came to Jingyanggang to drink again. This time, the boss gave him a difficult problem: the boss took out a lot of bowls of wine and put them in a circle on the table. Then he told Wu Song that according to the local rules, you have to count the number of drinks. At the same time, the local people hate 7, so if the number is a multiple of 7 or contains 7, you can't drink it. For example, you can drink at 9 or 19, but you can't drink at 27. The boss told Wu Song that the wine bowls were numbered clockwise from 1 and counted from 1. The boss said that if wu song could tell him the number of the bowls he drank in turn, he would be allowed to pass. Can you help him?
###Input format:
Input: give an integer n in a line, indicating the number of bowls of wine, n does not exceed 3000.
###Output format:
For each group of input, output the wine bowl number in one line, separated by a space in the middle, and there should be no extra space at the beginning and end.
###Input example:
Here is a set of inputs. For example:
```in
three
```
###Output example:
The corresponding output is given here. For example:
```out
3 1 2
```
answer:If there is no answer, please comment
###Input format:
Input: give an integer n in a line, indicating the number of bowls of wine, n does not exceed 3000.
###Output format:
For each group of input, output the wine bowl number in one line, separated by a space in the middle, and there should be no extra space at the beginning and end.
###Input example:
Here is a set of inputs. For example:
```in
three
```
###Output example:
The corresponding output is given here. For example:
```out
3 1 2
```
answer:If there is no answer, please comment