def steps_to_reach(a, b): count = 0 while a < b: a += a if a > 0 else 1 count += 1 return count # δΎ‹ a = 2 b = 5 print(steps_to_reach(a, b))