#include <stdio.h>

int main() {
	char nom[50];
	printf("Tapez votre nom: ");
	scanf("%s", nom);
	printf("Nom: %s\n", nom);
	return 0;
}

