s=input('请输入两个整数,用空格隔开:') print(sum(map(int,s.split()))) //为啥这个不对
s=input() print(sum(map(int, s.split()))) //为啥这个就对了,明明两个运行结果一致