fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int k=1500;
  6.  
  7. printf("k : %5d-\n",k);
  8. k/=10;
  9.  
  10. printf("k : %5d-",k);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5392KB
stdin
Standard input is empty
stdout
k :  1500-
k :   150-