int main() { const size_t START_VALUE = 10; size_t i;
for (i = 0; i <= START_VALUE; i++) cout << (START_VALUE - i) << endl;
return EXIT_SUCCESS; }