#include <stdio.h>

int main(void) {
	char str[] = "BOOM?";
	str[0] = 'Z';
	str[4] = '!';
	printf("%s\n", str);
	return 0;
}
