执行下面的Python代码,在键盘上先后输入100和200,输出是( )。
first = input("请输入第1个正整数:")
second = input("请输入第2个正整数:")
print(first + second)
300
100200
'100200'
100 200