#include <iostream>
#include <string>

using namespace std;
int main ()
{
     string yow[3][2];
     getline(cin,yow[0][1]);
     cout<<yow;

     return 0;
}
