What will be the output of the following Python code?
def f1(): global x x+=1 print(x) x=12 print("x")