#include <stdio.h> #include <stdlib.h> int main() { char str[100]; while(gets(str) != NULL) { printf("%s ",str); } return 0; }