fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class CInterprocessException : public std::runtime_error
  5. {
  6. public:
  7. CInterprocessException(int nLine, const std::string &strWhat)
  8. : std::runtime_error(strWhat), nLine(nLine)
  9. { }
  10.  
  11. const int nLine;
  12. };
  13.  
  14. int main() {
  15. // your code goes here
  16. return 0;
  17. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
Standard output is empty