print(sum([int(i) for i in input().split(" ")]))
有更快的解法,用map把输入的input转换成整型然后再用sum求和即可,
这个是我的代码
print(sum(map(int,input().split())))