0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2020-09-29 20:24:00 +08:00
parent aba7f11c01
commit 66d4ab6f2c
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

17
AcWing/724/724.cpp Normal file
View File

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