#include<bits/stdc++.h> using namespace std; int main(){ int n,m; int i=5; while(i>=1){ cout<<i<<endl; i=i-1; } return 0; }