fork download
  1. #include <iostream>
  2.  
  3. int main(int ac, char** av){
  4. int a = 5;
  5. int b = 2;
  6. int c;
  7. c = a / b;
  8. std::cout << a << b << c << std::endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 4792KB
stdin
Standard input is empty
stdout
522