下列代码的输出结果是?( )
def func(a, b):
c=a**2+b
b=a
return c
a=10
b=2
c=func(b,a)+a
print(c,b)
102 2
24 10
24 2
102 10