if "value" is an integer it will autoconvert.
if value is a real, there are a few ways.
1. value = round(abs(a),0) // round to 0 decimal places, you can round to any number of places
2. value = floor(a) // always round down
3. value = ceil(a) // always round up