test20.cvc 141 B

123456789101112
  1. int func()
  2. {
  3. int a;
  4. int b = 2;
  5. int c = 3 + 4;
  6. int d = 5 * 6;
  7. int e = 7 % 8;
  8. int f = c + d - e * b;
  9. return 0;
  10. }