fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. int x, y;
  6. std::cin >> x >> y;
  7. std::cout << x/y << std::endl;
  8. }
  9.  
Runtime error #stdin #stdout 0s 2852KB
stdin
1
0
stdout
Standard output is empty