单项选择题

执行完以下程序,输出的结果为()。
def func(a,b):
c=a*b
return c
s=func(10,2)
print(c,s)

A.2020
B.020
C.010
D.NameError:name ’c’is not defined