#include #include #include using namespace std; string aPlusB(int a, string b) { return a + b; } int main() { if (false) { cout << aPlusB(5.0, "3.0"); } else { cout << "Hi, there.\n"; } return 0; }