import math a = 16 b = 6 c = math.ceil(a/b) # assert c equals 3
import math a = 16 b = 6 c = ceil(a/b)