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