PROGRAMMING:The largest 10 primes less than m
Given an integer m (200 < m < 20000), find the largest 10 primes less than m.
###Input format:
Directly input a positive integer m (200 < m < 20000). There are no additional characters.
###Output format:
Output 10 prime numbers satisfying the condition in a row, and each prime number output occupies 6 columns. There are no additional formats and characters.
###Input example:
```in
two hundred and twenty-nine
```
###Output example:
```out
227 223 211 199 197 193 191 181 179 173
```
answer:If there is no answer, please comment
###Input format:
Directly input a positive integer m (200 < m < 20000). There are no additional characters.
###Output format:
Output 10 prime numbers satisfying the condition in a row, and each prime number output occupies 6 columns. There are no additional formats and characters.
###Input example:
```in
two hundred and twenty-nine
```
###Output example:
```out
227 223 211 199 197 193 191 181 179 173
```
answer:If there is no answer, please comment