#include <stdio.h>
int main() {
char txt[] = {'H', 'e', 'l', 'l', 'o', '\0'};
printf("%s", txt);
return 0;
}