执行下方的程序,输出的是?( )
def func(x,y):
if x == y:
return x + y
else:
return x * y
a = 3
b = 5
c = func(func(a,b),b)
print(c)
75
20
11
18