第15638题
运行给定的Python函数sub,正确的打印结果是什么?
def sub(a,b):
    return a-b
a,b = 5,3
c = sub(b,a)
print(c)
A

2

B

-2

C

1

D

-1