import java.util.Scanner;

public class ss {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);  
        int mall = in.nextInt();    //用户输入的值
        int sall=1;                 //赋值
        for (int i = 0; i < mall;i++) {    //for循环自己理解(后面不写注释了就是任性)
            i+=sall;
            System.out.println(i);
        }

    }
}