fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6.  
  7. int a, b;
  8.  
  9. cin>>a;
  10. cin>>b;
  11.  
  12. cout << a/b;
  13.  
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5288KB
stdin
18
9

stdout
2