写出下面代码的运行结果。
Def Sum(a, b=3, c=5):

写出下面代码的运行结果。
Def Sum(a, b=3, c=5):
print(a,b,c)
Sum(8,2)

A.8 2

B.8,2

C.8,2,5

D.8 2 5

正确答案是D