1183: 【C语言训练】求素数问题

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:20 Solved:12

Description

求出1-N中的所有素数

Input

大于1的正整数N

Output

1-N中的所有素数,(以从小到大的格式输出)

Sample Input Copy

9

Sample Output Copy

2 3 5 7