#include int main() { int N; N = 10; while( N > 0 ) { cout << N << endl; N = N - 1; } return( 0 ); }