| 记录编号 | 478016 | 评测结果 | AAAAAAAAAAAAAAAAAAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 2864.[NOIP 2017]小凯的疑惑 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.007 s | ||
| 提交时间 | 2017-12-08 09:41:14 | 内存使用 | 0.32 MiB | ||
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int main()
{
freopen("math.in","r",stdin);
freopen("math.out","w",stdout);
long long int a,b,c;
cin>>a>>b;
c=a*b-a-b;
cout<<c;
return 0;
}