第18302题
运行给定Python代码,先后输入1和3,输出的结果是?
a=int(input())
b=int(input())
if a < b:
    a=b
print(a)
A

3 1

B

1 3

C

1

D

3

提交0次 正确率0.00%
答案解析