c=a*b; cout<<c; c=a/b; cout<<c; c=a++; cout<<“incrementation of a by one”<<c; c=a--; cout<<”decrementation of a by one”<<c); }