#include void solve() { int a, b; std::cin >> a >> b; std::cout << a * 50 + (a * 500) / (8 + b * 2) << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }