1 2 3 4
10
def total(nums): return sum(nums) nums = list(map(int, input().split())) print(total(nums))