List = [int(i) for i in input().split()] Sum = 0 for j in List: Sum += abs(j) print(Sum)