#include <stdio.h>

static const int foo = 5;

int main(void) {
	printf("%d\n", foo);
	return 0;
}
