0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-08-03 15:10:24 +08:00 committed by Baoshuo Ren
parent eb20579b2a
commit 0930cacc60
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

12
AcWing/715/715.cpp Normal file
View File

@ -0,0 +1,12 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
for (int i = 1; i <= 10000; i++) {
if (i % n == 2) cout << i << endl;
}
return 0;
}