#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;
}