#include <iostream>
using namespace std;
int main()
  {
    int i=10, j=5;
    int modResult;
    int divResult;
    modResult = i%j;
    cout << modResult;
    divResult = i/modResult; 
    cout << divResult;
    return 0;
}
I can't understand the code above. I got this one from my referral book in debugging exercise. I have debugged the program. But I can't Understand what is it and how it works so plz help.
 
    