1.1 maekawa 1: 2: #include <stdio.h> 3: 4: main() { 5: char s[1024]; 6: while (scanf("%s",s) != -1) { 7: printf("%s\n",s); 8: } 9: }