Notice that the curve goes through the following three points (you could choose any three, but these are easy ones):
(0, 5) (2, 1) and (4, 5)
This allows you to set up the following three equations:
5 = a*02 + b*0 + c or simply c = 5
1 = a*12 + b*1 + c or a + b = -4 ...(1)
5 = a*42 + b*4 + c or 16a + 4b = 0 ...(2)
You could solve equations (1) and (2) for a and b if you wish; however, since you are only asked for a + b + c you could simply use the value of a + b from (1) together with the value for c.