import java.util.Scanner;
class main {
public static void main(String args[]) throws Exception {
int w = 0;
Scanner scanner = new Scanner(System.in);
int t = scanner.nextInt();
int h = scanner.nextInt();
int e = scanner.nextInt();
w = (int)(t * 0.2 + h * 0.3 + e * 0.5);
System.out.println(w);
}
}