fork download
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4.  
  5. int main() {
  6. double d = pow(2.0,50.0) / pow(2.0,60.0);
  7. cout << d << endl;
  8. cout << d * 1024.0 << endl;
  9. // your code goes here
  10. return 0;
  11. }
Success #stdin #stdout 0s 2684KB
stdin
Standard input is empty
stdout
0.000976562
1