distance = int(input("何キロ走りましたか?")) laps = distance // 10 post = distance % 10 print(laps, "周回っていま", post, "キロポスト地点です!") # プログラム3-11(周回とキロポスト)