fork download
  1. #include <iostream>
  2. #include <cmath>
  3.  
  4. int main()
  5. {
  6. std::cout << pow( 2, 5 ) << std::endl;
  7. std::cout << std::pow( 2, 6 ) << std::endl;
  8. return 0;
  9. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
32
64