#include <stdio.h>

int i;
int i = 1;

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