#include <iostream> using namespace std; int main(){ int i; cin>>i; do{ cout<<i<<" "; i--; } while(i>0); return 0; }