#include <stdio.h>
#include <stdlib.h>

char *str;

int main(void){
	str = malloc(10);
	scanf("%s", str);
	printf("your input is '%s'\n", str);
	free(str);
    return 0;
}