#include <stdio.h>

//cat input.txt | sed 's/ /\, 0b/g' > output.txt

int main(){

    char text[] = { 0b00110000, 0b00110000, 0b00110001, 0b00110001, 0b00110000, 0b00110000, 0b00110000, 0b00110001, 0b00100000, 0b00110000, 0b00110000, 0b00110001, 0b00110001, 0b00110000, 0b00110000, 0b00110000, 0b00110000, 0b00100000, 0b00101111, 0b00100000, 0b00110000, 0b00110000, 0b00110001, 0b00110001, 0b00110000, 0b00110000, 0b00110000, 0b00110001, 0b00100000, 0b00110000, 0b00110000, 0b00110001, 0b00110001, 0b00110000, 0b00110000, 0b00110000, 0b00110000, 0b00100000, 0b01110111, 0b01101111, 0b01110101, 0b01101100, 0b01100100, 0b00100000, 0b01100100, 0b01101111, 0b00100000, 0b01100001, 0b01100111, 0b01100001, 0b01101001, 0b01101110 };

    for(int i = 0; i < sizeof(text) / sizeof(text[0]); i++){
        printf("%c", text[i]);
    }
    printf("\n");
}