Hide

Problem F
Dividing Sequence

You are given an integer N. Your task is to find the longest sequence of integers a1<a2<<ak, such that ai divides ai+1 and 1aiN for all i.

Input

The input contains one line with integer N,1N1000000.

Output

The first line of output contains the length of the longest sequence. The second line contains space separated numbers a1,,ak in increasing order.

Sample Input 1 Sample Output 1
6
3
1 3 6
Hide

Please log in to submit a solution to this problem

Log in