You can manipulate values with math functions such as int() or clamp()
int( 'your number' ) will round down in construct
ie: int(13.5451) gives you 13
round( 'your number' ) will round to nearest
ie: int(13.5451) gives you 14
clamp( 'your number ' , 'min number ' , ' max number ') will stop your number from passing the bounds designated
ie: clamp(13.5451, 0, 10) gives you 10 (Can't be lower than 0 or higher than 10