| Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Prepared by Ibrahim Mesecan. 
Сложность Бета
 
 
 Water Bills
City water company wants to prepare bills faster, now. Write a program for them that reads 
the water usage amounts of n people and then the program is going to show the sum of the bills.
The water rates are computed as follows:
 
Your program will first get the number of bills to proceed (n). Then n integers
represent the amount of water used (litres). It will then print the total sum due from all users.$10 fixed price for the first 4 tonesIf it exceeds 4 tones; $0.005 for each additional litre. Input specification  You will be given an integer number (n) where 0 < n  ≤ 50000. Then, n intgers are given
in the following n lines. The water usage amount for every
customer is between 0 and 40000 liters
 Output specification  Show the total sum due from all users. The number will contain 
at most three digits after the floating point.
 Note: Use setprecision from iomanip library.
 
 
| Sample Input I 
 
  55000
 4200
 4400
 3000
 6010
 | Sample Input II 
 
  104511
 3414
 3864
 3440
 3300
 5505
 3243
 5433
 4734
 3990
 |  
| Sample Output I 68.05
 | Sample Output II 120.915
 |  Для отправки решений необходимо выполнить вход.
 
 
 |