Guest User

Untitled

a guest
Apr 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int a,b;
  8.     cin >> a >> b;
  9.  
  10.     for (int i = a; i <= b; i++){
  11.         int sum = 0;
  12.         for (int j = 1; j < i; j++){
  13.             if (i%j == 0)
  14.                 sum += j;
  15.         }
  16.         if (sum == i)
  17.             cout << i << endl;
  18.     }
  19.     return 0;
  20. }
Add Comment
Please, Sign In to add comment