#include<bits/stdc++.h> using namespace std; #define int long long signed main() { int t; cin>>t; int n = 1; while(t--) { cout << n << endl; n++; } }