#include int main() { char s[100]; if (gets(s) == NULL) { return 0; } printf("-(%c)-->%s<--\n", s[0], s); puts(s); puts("Good bye, 100%."); return 0; }