#include <stdio.h>

void f();

int main() {
    printf("Hello from C!\n");
    f();
}
