1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package backjun모음;
 
/*
 * 
 * 하나의 점으로 본것은 큰 실수
 * 범위로 체크 해야 했다. 
 */
 
public class backjun_2979_트럭주차 {
 
    
    public static void main(String[] args) throws Exception {
        // TODO Auto-generated method stub
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine());
        
        int one = Integer.parseInt(st.nextToken());
        int two = Integer.parseInt(st.nextToken());
        int three = Integer.parseInt(st.nextToken());
        
        int[] arr = new int[101];
        int min=Integer.MAX_VALUE, max = Integer.MIN_VALUE;
        for(int i=0; i<3; i++) {
            st = new StringTokenizer(br.readLine());
            int first = Integer.parseInt(st.nextToken());
            int second = Integer.parseInt(st.nextToken());
        
            for(int z=first; z<second; z++) {
                arr[z]+=1;
            }
            
            if(min>first)
                min = first;
            if(max<second)
                max = second;
        }
        //시작 과 끝 정해놓고
        
        int sum =0;
        for(int i=min; i<=max; i++) {
            if(arr[i] == 1) {
                sum+=(arr[i]*one);
            }else if(arr[i] ==2) {
                sum+=(arr[i]*two);
            }else if(arr[i] ==3) {
                sum+=(arr[i]*three);
            }
        }
        System.out.println(sum);
        
        
        
        
        
    }
 
}