fork download
  1. #include <iostream>
  2. #include <chrono>
  3. using namespace std;
  4.  
  5. int main() {
  6. std::chrono::milliseconds a(189);
  7. std::chrono::milliseconds b(89);
  8. auto a_durch_b = a/b;
  9. std::cout<<"erg: "<<a.count()<<", "<<a_durch_b<<"\n";
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
erg: 189, 2