#include <iostream>
using namespace std;

int main() {
	string s;
	while(true)
	{
		cout << "line 1" << endl;
		cout << "line 2" << endl;
		if(cin >> ws >> s) cout << s << endl;
	}
}