fork download
  1. #include <stdio.h>
  2. int main(){
  3. int a= 1, b=2, c=3;
  4. int d=b-- * ++c + --a * ++b + ++c- a--;
  5.  
  6. printf("%d",d);
  7.  
  8. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
13