-- Homework 13, problem 2 -- solution. local x = 3.7 print(x) print(math.floor(x)) print(math.ceil(x)) -- floor rounds DOWN to the nearest integer; ceil rounds UP.