a=0 b=1 c=a-b
c
c = Math.abs(c) // -1 will become 1 c = Math.max(0,c) // -1 will become 0 // or it\'s an error condition if( c < 0 ){ tellUserToStopMessingAroundAndEnterTheCorrectValues() return }