fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b, c;
  6. int d;
  7. a = 10E06;
  8. b = 25E06;
  9. c = 4096;
  10. d = (a - b)/c;
  11. std::cout << d << std::endl;
  12. return 0;
  13. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
-3662