# coding:utf-8 L, M, N = [int(input()) for i in range(3)] L_m = L * 100 M_m = M * 25 N_m = N * 1 goukei_N = N_m nokori_N = (N_m % 25) * 1 goukei_M = M_m + (N_m - nokori_N) nokori_M = goukei_M % 100 goukei_L = L_m + (M_m - nokori_M * 25) nokori_L = goukei_L % 1000 ans_N = nokori_N ans_M = nokori_M // 25 ans_L = nokori_L // 100 ans_total = ans_N + ans_M + ans_L print(ans_total)