比赛 EYOI与SBOI开学欢乐赛4th 评测结果 AAAAAAAAAA
题目名称 全速疾走 最终得分 100
用户昵称 惠惠 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2022-09-12 20:50:30
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
long long m, n;
int main()
{
    freopen("Gallop_at_full_speed.in", "r", stdin);
    freopen("Gallop_at_full_speed.out", "w", stdout);
    scanf("%lld%lld", &m, &n);
    if(m & 1) --m;
    if(n & 1) --n;
    long long ans = m * n;
    printf("%lld", ans);
    return 0;
}