SOURCE FILE: lab011.cpp


// Program to print part of a song 

#include <iostream.h>

int main(void)
{
   cout << "Give me land, lots of land";
   cout << "\nAnd the starry skies above...\n";

   return 0;
}