#include using namespace std; int main() { // Number to print. int i; // Print the values from 1 to 10 in steps of 1. for(i=1;i<=10;i++){ cout << i << endl; } cout << "DONE!" << endl; cout << "Value of i at this point : " << i << endl; // Print out the values of i from 10 to 1. for(i=10;i>=1;i--){ cout << i << endl; } cout << "DONE!" << endl; cout << "Value of i at this point : " << i << endl; return 0; }