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