//*****************************************************
// Welcome program
//*****************************************************
#include
<iostream>
using namespace std;
void PrintLines(int); function
prototype
int main()
{
PrintLines(2);
cout << Welcome Home! << endl;
PrintLines(4);
return 0;
}