int main() { int a = 4; int b = 5; int c = a++ * b; int d = ++a * b; return d; }