#include int main() { int x = 22; { int x = 44; cout << x << endl; } cout << x << endl; { int x = 66; cout << x << endl; } cout << x << endl; return 0; }