#14797: C++ AC


elvisliu (方塊)


#include <bits/stdc++.h>
using namespace std;
  int main() {
  string a,b;
    getline(cin,a);
    getline(cin,b);
    cout<<a<<" and "<<b<<" sitting in the tree"<<endl; 
}