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

#include <iostream>

int main() {

 int Iinc = 10;
 int Jinc = 10;
 for (int i = 20; i > Iinc; i--)
 {
  cout << "I'm in loop for I" << endl;
  for (int j = 20; j > Jinc; j--)
  {
   cout << "I'm in loop for J" <<endl;
   Jinc++; 
  }
  Iinc++;
}
return 0;
}

