Problem1746--【入门】能被2、3、5、7中至少2个数整数的数

1746: 【入门】能被2、3、5、7中至少2个数整数的数

Time Limit: 1.000 Sec  Memory Limit: 64 MB
Submit: 7  Solved: 10
[Submit] [Status] [Web Board] [Creator:][下载测试数据]

Description

请输出1~n中至少能够被2357中两个及两个以上的数整除的数?

比如:30,就是能够被2357中的3个数整除,就是符合条件的数。


Input

一个整数n(n<=200)


Output

输出1~n中满足条件的数,每行1个。


Sample Input

20

Sample Output

6
10
12
14
15
18
20

Source/Category


[Submit] [Status]