#include int main(){ while(true){ char c = std::cin.get(); if(c == EOF) break; std::cout << c; } return 0; }