0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 09:18:48 +00:00

P3951 小凯的疑惑

R42853388
This commit is contained in:
Baoshuo Ren 2020-11-29 18:15:27 +08:00 committed by Baoshuo Ren
parent ea0e1d3d6e
commit 6c1e404b76
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

9
problem/P3951/P3951.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
long long a, b;
cin >> a >> b;
cout << a * b - a - b << endl;
}