#include <stdio.h>

int main(void) {
	char *a= "test";
	a[0]= 'h';
	printf ("%s", a);
	return 0;
}
