0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:05:24 +00:00
OI-codes/Luogu/T216906/T216906.cpp

15 lines
217 B
C++

#include <iostream>
#include <cmath>
using std::cin;
using std::cout;
using std::endl;
int t, h, e;
int main() {
cin >> t >> h >> e;
cout << (int)floor(0.2 * t + 0.3 * h + 0.5 * e) << endl;
return 0;
}