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

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

A.8

B.8 3 5

C.8,3,5

D.0 3 5

正确答案是B