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