fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int m=20, n=30, k=40;
  5. if(m>n)
  6. if(n<k)
  7. printf("%d", ++k);
  8. else printf("%d", ++n);
  9. printf("%d\n", m++);// your code goes here
  10. return 0;
  11. }
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
20