SOURCE FILE: lab01.cpp


// Program to print song lyrics

#include <iostream>

using namespace std ;

int main(void)
{
   cout << "Hugh, think hill run not wok to you?\n" ;
   cout << "Why you'd eye wand dew tock too yew." ;
   cout << endl << "I warned you calling bag to me,\n" ;
   cout << "down dawn two needs, yeah.\n" ;
   cout << "like an app can ache to me\n" ;
   cout << "Sands, Anna thee see ya" ;

   return 0;
}