fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int a, b;
  6. cin >> a >> b;
  7. int k, r;
  8. k = b / a;
  9. cout << k;
  10. r = b % a;
  11. cout << r;
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
032766