1
2
3
4
5
6
7
8
int main (void) 
{
char string[256];
scanf("%s", string);
printf("%s", string);

   return 0;
}