fork download
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4.  
  5. int main() {
  6. const int SIZE = ceil(log10(pow(2., 1000)));
  7. int arr[SIZE];
  8. cout << "Success!\n";
  9. return 0;
  10. }
Success #stdin #stdout 0s 3296KB
stdin
-pedantic
stdout
Success!