| 7 | #define endl '\n' |
| 8 | |
| 9 | int main(){ |
| 10 | cin.tie(0)->sync_with_stdio(0); |
| 11 | int n;cin>>n; |
| 12 | for (int i = 1; i < n; ++i) |
| 13 | { |
| 14 | if(n%i==0) |
| 15 | cout<<i<<" "; |
| 16 | } |
| 17 | |
| 18 | return 0; |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected