fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a=3;
  5. while(a<=10000)
  6. {
  7. a=2*a-1;
  8. }
  9. printf("%d",a);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
16385