/* 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() {

 for (int i = 0; i < 10; i++)
 {
  cout << "This is test" <<endl;
 }
}

