0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:45:26 +00:00
OI-codes/AcWing/724/724.cpp

18 lines
209 B
C++

#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;
}