// Justin C. Miller
// University of Wisconsin Oshkosh
// Made for: http://www.geocities.com/neonprimetime.geo/index.html
// Date: 2001
// Borland Builder 4.0

// THIS WORKS
#include   // you can't use the .h
#include     // you can't use the .h

using namespace std ;  // you must include this as well

int main()
{
	string name ;
	cin >> name ;
	cout << name << endl ;
	return 0 ;
}

/*
// THIS WON'T WORK
#include 
#include 
// THIS WON't WORK
#include 
#include 
using namespace std ;
// THIS WON't WORK
#include 
#include 
using namespace std ;
*/

    Source: geocities.com/neonprimetime.geo/cpp/cpp_SourceCode

               ( geocities.com/neonprimetime.geo/cpp)                   ( geocities.com/neonprimetime.geo)