运行以下代码,若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