import java.util.Arrays; import java.util.LinkedList; import java.util.Scanner; public class Main { /* * 貪欲法可能な条件をみたしているので, 貪欲してしまっていい. * 1 -> 25 -> 100 -> 1000 * は, 倍数の関係である, 25倍, 4倍, 10倍 * */ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int K = 0; int L = sc.nextInt(); int M = sc.nextInt(); int N = sc.nextInt(); M += N / 25; N %= 25; L += M / 4; M %= 4; K += L / 10; L %= 10; System.out.println((L + M + N)); } }