#include #include int main (int index, char** in_data){ char buf[50]; fscanf(stdin,"%10[^\n]",buf); fprintf(stdout,"%s",buf); return 0; }