#include <iostream>

int main(void)
{
  
  int max;
  int i = 0;
  
  std::cout <<"I'm a super duper counter. I can count real high. To what would you like me to count? ";

  std::cin >> max;

  std::cout <<"OK, here I go ";

  while(i <= max)
    {
      std::cout << i << " ";
      i++;
    }
  
  std::cout <<"\n I'm so awesome!\n";

  return(0);
}

