#include <iostream>
#include <string>
using namespace std;

int main() {
	string i;
	
	while(cin >> i) cout << i << endl;
}