#include <iostream>

using namespace std;

int main()
{


    char buf1[100],buf2[100];
    int c;
    cin >> buf1;
    cin >> c;
    cout << endl << buf1 << endl << c << endl;
    cin >> ws >> buf2;
    cout << endl << buf2<< endl;




    return 0;
}
