import math
# Some numbers to take floors of.
value0 = 100
value1 = 100.1
value2 = 100.5
value3 = 100.9
# Take floor of number.
floor0 = math.floor(value0)
print(value0,
":", floor0)
# Take other floors.
print(value1,
":", math.floor(value1))
print(value2,
":", math.floor(value2))
print(value3,
":", math.floor(value3))
100 : 100
100.1 : 100
100.5 : 100
100.9 : 100