main (){
    char s[20];

printf("Enter your name: "); gets(s); printf("Hello, %s.\n", s); }