fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main(void) {
  5. double x,y,z;
  6. scanf("%lf %lf",&x,&y);
  7. z = pow(1+x,y);
  8. printf("%.2f",z);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5316KB
stdin
0.1 10
stdout
2.59