#include <stdio.h>
int main()
{
int a = 5;
int b = 3;
int result;
result = a * b + (++a);
printf("결과 = %d \n", result); // 15+6 = 21
int c = 6;
int d = 4;
result = c * d + (c--);
printf("결과 = %d \n", result); // 6*4 = 24 / 24 + 6 = 30
a = 10, b = 5, c = 6;
result = ++a * --b + (++c); // 11 * 4 = 44 / 44 + 7 = 51
printf("결과 = %d \n", result);
return 0;
}