SOURCE FILE: lab01.cpp


// Program to print song lyrics

#include <iostream>

using namespace std ;

int main(void)
{
   cout << "In banana's great harvest over the seas\n" ;
   cout << "We'd hide by the tracks from exorbitant fees." ;
   cout << endl << "We'd bake while adorning our earlobes with clay\n" ;
   cout << "and hatch lots of spiders in campers each day." ;

   return 0;
}