C++程序  |  8行  |  155 B

/* Nothing fancy here, just checking that we can compile hello world */
#include <stdio.h>

int main(void) {
    printf("Hello World!\n");
    return 0;
}