What is the output of the following code?```pythonvar = 100def my_func(): var = 50 print(var)my_func()print(var)```