#include <stdio.h>
int main()
{
int a = 5; // 5으로 초기화
int b = 3; // 3으로 초기화
int result;
result = a * b + (++a); //이항 연산자 *와 증가 연산자 ++ ㅅ사용
printf("결과 = %d\n", result);
int c = 6;
int d = 4;
result = c * d + (c--);
printf("결과 = %d\n", result);
return 0;
}