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;
}
posted @ 2024-08-09 23:52  Frodnx  阅读(12)  评论(0)    收藏  举报