print("貴方の歩幅は何センチ?") a = int(input()) print("この道は何センチくらいの距離?") b = int(input()) c = 0 c = b / a print(b,"センチメートルの区間を歩くのには", int(c),"歩で歩ける。")