Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб.  Question by Ibrahim Mesecan. 
Сложность Альфа
  
Pocket Money 
Albi is a primary school student. His father gives pocket money every week. His pocket money is calculated accourding to the 
number pages he reads everyday. To encourage him to read more his father uses the following calculation.
 
- if total pages is less than 70: 100 lek
 
- if total pages is between 70 and 200: 2 lek per page
 
- if total pages is more than 200: 400 Lek + 4 lek for every extra pages
 
 
Question:   
Write a program that is going to get the number of pages Albi read in this week and
calculate the Pocket money for Albi.
 
Input specification   
You will be given 6 integer numbers where each of
them can be between 0 and 50.
 
Output specification   
Calculate the amount of pocket money for Albi
 
 
Sample Input I  
 
  1 
  38 
  36 
  24 
  17 
  20
 | 
Sample Input II  
 
  33 
  38 
  34 
  40 
  34 
  38
 |  
Sample Output I 
 
  272
 | 
Sample Output II 
 
  468 | 
   
 
Для отправки решений необходимо выполнить вход.
  
 |