#include <iostream> using namespace std; int main() { int n; cin>>n; for(int x=n; x>0; x--) printf("%d\n",x); }