#include #include // file: page2.cc // using a parameter in a function // read input // simulate airport paging void Page(string person) { cout << endl; cout << "Paging " << person << endl; cout << "Paging " << person << endl; cout << person << ", please call the operator from the white " << "courtesy telephone." << endl; } int main() { string who; cout << "Who are you gonna page?" << endl; cin >> who; Page(who); return 0; } Who are you gonna page? >Paging GhostBusters >Paging GhostBusters >GhostBusters, please call the operator from the white courtesy telephone.