sum(int(n) for n in input().split())
Edit: A more functional version is shorter still, but I think not worth the readability cost:
sum(map(int, input().split()))
Edit: A more functional version is shorter still, but I think not worth the readability cost: