PROGRAMMING:Output numbers within 1000 that can be divided by both 7 and 5
This topic requires reading an integer m from the keyboard, output more than 1, less than or equal to the number that M can be divided by 7 and 5 at the same time. If the reading m is less than or equal to 1, it means that the input is illegal, then the program ends.
###Input format:
Enter the value of M given on one line.
###Output format:
For each group of input, output the number that meets the requirements. Each number is required to occupy 5 columns, right aligned, and output 5 numbers per row. If there is no number that meets the requirement, output "not found!"; M input not in accordance with the law, output "error!" And end the procedure.
###Input example:
```in
ten
```
###Output example:
```out
NOT FOUND!
```
###Input example:
```in
one thousand
```
###Output example:
```out
35 70 105 140 175
210 245 280 315 350
385 420 455 490 525
560 595 630 665 700
735 770 805 840 875
910 945 980
```
###Input example:
```in
one
```
###Output example:
```out
ERROR!
```
answer:If there is no answer, please comment
###Input format:
Enter the value of M given on one line.
###Output format:
For each group of input, output the number that meets the requirements. Each number is required to occupy 5 columns, right aligned, and output 5 numbers per row. If there is no number that meets the requirement, output "not found!"; M input not in accordance with the law, output "error!" And end the procedure.
###Input example:
```in
ten
```
###Output example:
```out
NOT FOUND!
```
###Input example:
```in
one thousand
```
###Output example:
```out
35 70 105 140 175
210 245 280 315 350
385 420 455 490 525
560 595 630 665 700
735 770 805 840 875
910 945 980
```
###Input example:
```in
one
```
###Output example:
```out
ERROR!
```
answer:If there is no answer, please comment