#33248: 要用getline


yp11151049@yphs.tp.edu.tw (901-26李文睿)


#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;
    
}