记录编号 |
476386 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
[NOIP 2017]小凯的疑惑 |
最终得分 |
100 |
用户昵称 |
HtBest |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.008 s |
提交时间 |
2017-11-23 19:29:27 |
内存使用 |
0.31 MiB |
显示代码纯文本
#define _CRT_SECURE_NO_DEPRECATE
/************************
*创建时间:2017 11 23
*文件类型:源代码文件
*题目来源:NOIP2017
*采用算法:小学奥数
*作者:HtBest
************************/
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main()
{
freopen("2017math.in","r",stdin);
freopen("2017math.out","w",stdout);
long long a,b;
scanf("%lld%lld",&a,&b);
printf("%lld",a*b-a-b);
return 0;
}