//File:  string2.cpp
#include <iostream>
using namespace std;
//The following program takes a line of text and echoes it to the screen
int main()
{
	char line [80];
	
	cin.getline (line, 80);
	
	cout << line << endl;
}
