#include <stdio.h>
int main(void) {
/* This is a long comment */
const int year = 2024;
// This is a short comment
printf("hello world %d!\n", year);
return 0;
}