| Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Question by Ibrahim Mesecan. 
Difficulty Alpha
 
 
 Pocket MoneyAlbi 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 lekif total pages is between 70 and 200: 2 lek per pageif 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 
 
  138
 36
 24
 17
 20
 | Sample Input II 
 
  3338
 34
 40
 34
 38
 |  
| Sample Output I 
 
  272
 | Sample Output II 
 
  468 |  Для отправки решений необходимо выполнить вход.
 
 
 |