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