#include using namespace std; int main() { int x = 3, y = 4; { int x = 7; cout << "x in block is " << x << endl; cout << "y in block is " << y << endl; } cout << "x in main is " << x << endl; return 0; }