a = [abs(int(i)) for i in input().split()] summ = 0 for i in a: summ = summ + i print(summ)