/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
int a = 5;
int b = 3;
int result;
result = a * b + (++a); // 3 x 5 + 6
printf("ê²°ê³¼ %d\n",result);
int c = 6;
int d = 4;
result = c * d + (c--); // 6 x 4 + 6
printf("ê²°ê³¼ %d\n",result);
a = 10, b = 5, c = 6;
result = ++a * --b + (++c); // 11 x 4 + 7
printf("ê²°ê³¼ %d\n",result);
return 0;
}