#include int main() { int c = getc(stdin); while (c != EOF) { putchar(c); c = getc(stdin); } getchar(); return 0; }