运行下列这段程序,正确的输出结果是?( )
def f(a,b):
c=a**2+b
b=a
return c
a=5
b=100
c=f(a,b)+b
print(c)
210
225
130
115