#include int main() { int i; i = 10; while (i >= 1) { cout << i << " "; i--; // subtract 1 from i } return 0; }