下面Python代码最后执行后最后一行输出是( )。
m,n =9,99
def Foo(n):
m +=100
n = 100
return m
print(m,Foo(n),n)
9 109 99
109 109 99
109 109 100
触发异常