0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 01:05:26 +00:00
OI-codes/Codeforces/1374/A/A.cpp
2022-09-25 20:39:35 +08:00

15 lines
229 B
C++

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