#include <iostream>
using namespace std;

int main() {
	int i = 0;
	if(true) {
		int i = 5;
		cout << i << '\n';
	}
	return 0;
}