| 2 | using namespace std; |
| 3 | |
| 4 | int main() { |
| 5 | long long N; |
| 6 | cin >> N; |
| 7 | for (long long i = 1; i * i <= N; i++) { |
| 8 | if (N % i != 0) continue; |
| 9 | cout << i << endl; // i ��ɒlj� |
| 10 | if (i != N / i) { |
| 11 | cout << N / i << endl; // i �� N/i �̂Ƃ��AN/i ���ɒlj� |
| 12 | } |
| 13 | } |
| 14 | return 0; |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected