0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-05 12:38:47 +00:00
OI-codes/Codeforces/1604/D/D.cpp
2022-04-01 18:33:24 +08:00

21 lines
340 B
C++

#include <bits/stdc++.h>
using namespace std;
int t, x, y;
int main() {
cin >> t;
while (t--) {
cin >> x >> y;
if (x > y) {
cout << x + y << endl;
} else if (x == y) {
cout << x << endl;
} else {
cout << y - (y % x / 2) << endl;
}
}
return 0;
}