Advertisement
Josif_tepe

Untitled

Feb 3rd, 2024
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2. #include <algorithm>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int x;
  8.     cin >> x;
  9.    
  10.     for(int i = 1; i <= x; i += 1) {
  11.         if(x % i == 0) {
  12.             cout << i << endl;
  13.         }
  14.     }
  15.     return 0;
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement