void main()
{
//other code here that defines and calculates int i and int j
//assume int i has somehow gotten a value of 10
//assume int j has received a value of 20
if(i=j)
{
return 0;
}
else
{
i += --j;
j++;
}
}