import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner sc = new Scanner(System.in); //100円硬貨の枚数 int L = sc.nextInt(); //25円硬貨の枚数 int M = sc.nextInt(); //1円硬貨の枚数 int N = sc.nextInt(); //1円硬貨を両替 if(N != 0) { M += 25 / N; N = 25 % N; } //25円硬貨を両替 if(M != 0) { L += 4 / M; M = 4 % M; } //100円硬貨を両替 if(L != 0) { L = 10 % L; } //硬貨の合計枚数を求める int sum = N + M + L; System.out.println(sum); } }