I have four numbers
x=50
y=30
z=20
sum of x+y+z=100
if i want to add a number n where
n=(x+y)/2
Edit:
n=45
such that x+y+z+n=100
now x+y+z=100.If any number (45 here) is added, then the sum should be always 100. i.e we need to subtract number(say m) from each x,y,z,n such that sum x+y+z+n should be equal to 100.
is it possible to do that.