test.c 109 B

1234567
  1. #include <stdio.h>
  2. int main(void) {
  3. int a = 2, b = 5, c = a * b, d = a * 6, e = 3 * 7;
  4. return 0;
  5. }