I do not think that what you are telling will work. Have you triedputting that to code and testing it out?Instead this works -int x, y;x = -7;y = 5;int z = -1 * (0 - x - y);Isn't it?