SOURCE FILE: lab01.cpp


// Program to print part of a song 

#include <iostream>

using namespace std ;

int main(void)
{
   cout << "Did you ever hear tell of Sweet Betsy from Pike";
   cout << endl << "Who crossed the high prairies" ;
   cout << " with her lover Ike?" << endl;

   return 0;
}