fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. long long x,x2,x4,x8,x16,x32,x48,x55;
  6. scanf("%lld",&x);
  7. x2=x*x;
  8. x4=x2*x2;
  9. x8=x4*x4;
  10. x16=x8*x8;
  11. x32=x16*x16;
  12. x48=x32*x16;
  13. x55=x48*x8/x;
  14. printf("%lld",x55);
  15. return 0;
  16. }
Success #stdin #stdout 0s 15232KB
stdin
2
stdout
36028797018963968