1. 程式人生 > >【NOIP2017提高組 day1】小凱的疑惑

【NOIP2017提高組 day1】小凱的疑惑

題目

在這裡插入圖片描述

題解

–emmm怎麼說呢,畢竟是第一題,當然是打表咯哈哈哈哈哈 算出來答案是(a*b)-(a+b) 雖然不會證 能AC就行不是嗎

程式碼

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
const int MAXN=1;

long long a,b;

int main(){
//	freopen("math.in","r",stdin);
// freopen("math.out","w",stdout); cin>>a>>b; cout<<a*b-(a+b); return 0; }