import java.util.Scanner; class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); int han = Integer.parseInt(sc.next()); int twef = Integer.parseInt(sc.next()); int one = Integer.parseInt(sc.next()); twef += one / 25; one = one % 25; han += twef / 4; twef = twef % 4; han = han % 10; System.out.println( one + twef + han ); } }