fork download
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. int main() {
  6. cout << (int)cbrt(2197) << "\n";
  7. cout << (int)cbrt(17576) << "\n";
  8. }
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
13
26