fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. int E, T;
  5. std::cin >> E >> T;
  6.  
  7. int V = E / T;
  8.  
  9. std::cout << V << std::endl;
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
-6536