#include using namespace std; int main(){ double a,b; cin >> a >> b; double ans=50*a+floor((50*a)/(0.8+0.2*b)); cout << ans << endl; }