def Vegas():
    x = 20
    print('In Vegas, x =', x)

x = 10
Vegas()
print('Not in Vegas, x =', x)
