/***********************
 * count.cpp           *
 * ---------           *
 * This is a program   *
 * that counts from 1  *
 * to 100 and demon-   *
 * strates the use of  *
 * the while loop.     *
 ***********************/

#include <iostream>

int main(void)
{
  
  int i = 0;

  std::cout <<"I'm a super duper counter. Check this out: ";
  
  while(i <= 100)
    {
      std::cout << i << " ";
      i++;
    }
  
  std::cout <<"\n I'm so awesome!\n";

  return(0);
}
	

