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


A、8 2
B、8,2
C、8 3 2
D、8,3,2