fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main()
  5. {
  6.  
  7. int N = 11;
  8. scanf("%d", &N);
  9.  
  10. printf("%.0lf", pow(2, N));
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 4528KB
stdin
Standard input is empty
stdout
2048