| 比赛 | 20190522数学 | 评测结果 | AAAAAAAAAAAAAAAAAAAA |
|---|---|---|---|
| 题目名称 | 小凯的疑惑 | 最终得分 | 100 |
| 用户昵称 | CoolBoy小逴 | 运行时间 | 0.009 s |
| 代码语言 | C++ | 内存使用 | 13.66 MiB |
| 提交时间 | 2019-05-22 18:00:09 | ||
#include<iostream>
#include<cstdio>
using namespace std;
long long a,b;
int main(){
freopen("math.in","r",stdin);
freopen("math.out","w",stdout);
scanf("%lld%lld",&a,&b);
printf("%lld",a*b-a-b);
return 0;
}