l = int(input()) m = int(input()) n = int(input()) t = l * 100 + m * 25 + n t %= 1000 print(t // 100 + (t % 100) // 25 + t % 25)