运行以下程序, 如果通过键盘先后输入的数是 1 和 3, 输出的结果是? ( )
a=int(input() )
b=int(input() )
if a < b:
a=b
print(a)
3 1
1 3
1
3