#include <cstdio>
#include <cstdlib>

// Yes, printf still works in C++.
// No, you should not normally use it in ordinary C++ code.

int main(int argc, char **argv) {
  printf("Hello from C!\n");
  return EXIT_SUCCESS;
}