#include <iostream> using namespace std; int main() { unsigned i; for(i=9;i>=0;i--) { printf("%u\n",i); } }