#include <iostream>
using namespace std;

int main() {

	int i_local; // automatic storage duration, not static

	cout << "Value of i_local: " << i_local << endl; // (2-3) value is undetermined
	
	return 0;
}
