#include <iostream>

int main() {
    char* pointer = 0L;
    strcpy(pointer, "Hahahahahahahaha");
    std::cout << "hello, world" << std::endl;
}

