#include <iostream>
using namespace std;
int main()
/*{
    int x=3,y;
    y=x++ + ++x;
    cout<<y<<endl;
    return 0;
}*/
{
    int y=3;
    int z=(--y)*(y=10);
    cout<<z;
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: