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