记录编号 581399 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 [NOIP 2017]小凯的疑惑 最终得分 100
用户昵称 Gravatar┭┮﹏┭┮ 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2023-08-02 15:59:21 内存使用 0.00 MiB
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
long long n,m;
int main(){
    freopen("2017math.in","r",stdin);
    freopen("2017math.out","w",stdout);
    scanf("%lld%lld",&n,&m);
    printf("%lld\n",(n-1)*m-n);
    
    return 0;
    
}