IF TEST = 1
{
  ASSIGN Value = 102.589
}

//floor --Returns the largest integer less than or equal to the specified
//value.

ASSIGN NewValue1 = floor(Value)

//ciel -- Returns the smallest integer greater than or equal TO the 
//specified value.

ASSIGN NewValue2 = ceil(Value)