执行下面Python代码后,输出的结果是?( )
1 def fun(x, y, **kwargs): 2 res = x + y 3 for i in kwargs.values(): 4 res += i 5 return res 6 7 8 print(fun(10, 20, A=6, B=1, C=3))
40
36
30