can you put an arithmetic operation into an array subscript or do you have to do it in 2 instructions.
adults = adults + 1
subx = adults * 150
move indata to array((adults * 150) + 53) or
move indata to array(subx + 53)
move salary to array(subx + 60)
or do you have to have the subx calc before every move
subx = adults * 150 +53
move indata to array(subx)
subx = adults * 150 + 60
move salary to array(subx)
seems like a lot of wasted code/space