#include <stdio.h>
int main() {
    char name[100];  // to store the name

    printf("Enter your name: ");
    scanf("%s", &name);  // read the name

    printf("Your name is: %s\n", name);  // print the name

    return 0;
}