输入2个数,输出和。
print(sum(int(x) for x in filter(None,input().split(" "))))
其中filter完全就是保险而已,可以去掉。
print(sum(int(x) for x in input().split(" ")))