a = int(input('一歩は何センチ?')) b = int(input('何センチまで?')) if (b % a) == 0: counter = b // a else: counter =(b // a) + 1 print(counter)