第25918题
判断Python输入10,20时执行指定代码是否输出30
a,b = input().split(",")
print(a + b)
A

正确

B

错误