fork download
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. int main() {
  6. int c = 2;
  7. int iterations = pow(6,8);
  8. for(int i=0;i<iterations;i++){
  9. c+=2;
  10. }
  11. cout<<iterations;
  12. return 0;
  13. }
Success #stdin #stdout 0s 4452KB
stdin
Standard input is empty
stdout
1679616