L1-060 心理阴影面积 分数 5
// 3'56"
#include <iostream>
using namespace std;
int main()
{
int x, y;
cin >> x >> y;
cout << 100 * 50 - ((100 - x) * y) - (x * y) / 2- ((100 - x) * (100 - y)) / 2;
return 0;
}
// 3'56"
#include <iostream>
using namespace std;
int main()
{
int x, y;
cin >> x >> y;
cout << 100 * 50 - ((100 - x) * y) - (x * y) / 2- ((100 - x) * (100 - y)) / 2;
return 0;
}