نوشتههای سیدمحمدمسعود صدرنژاد
def frog_jump(x, y, d): distance = y - x if distance % d == 0: return distance // d else: return distance // d + 1