/* Author Name: Baljeet S. Malhotra */
/* Student ID:  XXXXXXXXXXX         */ 
/* Program Name: for loop example 1 */
/* Program Description: Example     */
/* Date of creation: 14th Oct. 2004 */
/* Lab section: XX                  */

#include <iostream>

main() {

  int tempI = 0;

  cout << "The value of tempI is : " << tempI << endl;

  tempI = tempI + 1;

  cout << "The value of tempI is : " << tempI << endl;

  tempI = tempI + 1;

  cout << "The value of tempI is : " << tempI << endl;

  tempI = tempI + 1;

 cout << "The value of tempI is : " << tempI << endl;

}

