#include<iostream>
using namespace std;
int main(){
    int n;
    cin>>n;
    int i=1;
    while(true){
        cout<<i<<endl;
        i++;
    }
}