#include<iostream.h>#include<stdio.h>#include<memory.h>void main() { int x=20,y=35; x=y++ + x++; cout<<x<<y<<endl; cout<<"**************"<<endl; y= ++y + ++x; cout<<x<<y<<endl;}