SOURCE FILE: lab01.cpp


// Program to print song lyrics

#include <iostream>

using namespace std ;

int main(void)
{
   cout << "Cans that are shaken and faces get hacked,\n" ;
   cout << "That's about learning to shave." ;
   cout << endl << "When you remove it, it only grows back,\n" ;
   cout << "That's about learning to shave." ;

   return 0;
}