#include <stdio.h>

int main(void) {
    char word[] = {'H', 'E', 'L', 'L', 'O'};
    
    printf("%s", word);
    
    return 0;
}