#include <stdio.h>
int main(){
int a = 5;
int b = 3;
int result;
result = a * b + (++a); //ě´í ě°ě°ě *ě ěŚę° ě°ě°ě ++ ěŹěŠí´ě 5 * 3 + 6 =21ě´ ëě´
printf("결곟=%d\n",result);
int c = 6;
int d = 4;
result = c * d + (c--); //ě´í ě°ě°ě *ě ę°ě ě°ě°ě -- ěŹěŠí´ě 6*4 =24 + 6 = 30
printf("결곟=%d\n",result);
a =10,b=5,c=6;
result = ++a * --b + (++c); //11 * 4 + 7 = 51ě´ ëě´
printf("결곟=%d\n",result);
return 0;
}