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

#include <iostream>

main() {

 int tempI = 0;

 while (tempI < 10)
 {
  cout << "This is test" <<endl;
  tempI++;
 }
}

