#include using namespace std; int main() { char c; while( scanf("%c", &c) != EOF ) { printf("%c",c); } return 0; }