#include using namespace std; int main(){ string a = "antelope", b = "bee"; string c = a + b; cout << c << endl; return 0; }