运行以下代码,若 d 的值为 17,则 return 后面应该填?( )
def function(a,b):
c = a+b
return _______
a,b = 3,2
d = function(a,b)
c+a+b
c-a*b
c+a*b
c*a+b