def step(a, b): """ 歩数を求める """ for i in range(1, b): if ((a * i) >= b): return i