#include <stdio.h>

int main(void) {
int i = 3;

if (1) {
	int i = 5;
	printf("%d", i);
}

printf("%d", i);
return 0;

}