L = int(input()) M = int(input()) N = int(input()) #1000円、100(N)、25(M)、1(L)円 M += L//25 L = L%25 #print(L,M) N += M//4 M = M%4 #print(N,M) N = N%10 print(N+M+L)