using namespace std; int main(){
int ans = 0; for (int i = 1; i <= 12; i++) { int get; cin >> get; ans += 300 - get; } cout << ans * 1.2;
}