1078: 【入门】求出N以内的全部素数,并按每行五个数显示

Memory Limit:16 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

求出N以内的全部素数,并按每行五个数显示。

Input

输入一个整数N。(N <= 1000)

Output

依题意,输出满足条件的数!2 3 5 7 11 ......

Sample Input Copy

30

Sample Output Copy

2 3 5 7 11
13 17 19 23 29