#include <stdio.h>

int main() {
    const char* myString = NULL;

    printf("%s\n", myString);

    return 0;
}