fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int k=200;
  5. while(k>50)
  6. {
  7. k=(int)(k/3);
  8. }
  9. printf("%d",k);
  10.  
  11. // your code goes here
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5552KB
stdin
Standard input is empty
stdout
22