Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define nl << "\n"
#define fast ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int main() {
int t;
cin >> t;
while(t--) {
ll a, b;
cin >> a >> b;
cout << (a * b) - min(a, b) nl;
}
}
Information
- Submit By
- Type
- Pretest
- Problem
- P1075 GCD not equal LCM
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-10-02 11:03:39
- Judged At
- 2024-11-11 02:51:44
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 324.0 KiB