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

int main() {
	char text[100] = {0};
	for (char currentText[100]; cin >> currentText; strcat(text, currentText));
	cout << text;
	return 0;
}