123456789101112131415
#include <iostream> using namespace std; int main () { int t; cin>>t; string s; while(t--) { getline(cin,s); } return 0; }