fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5. int m1=1, m2=3;
  6. printf("%d",(m1++<--m2? --m2:m1++)),printf("%d",m1),printf("%d",m2);
  7.  
  8. system("pause");
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
121