package test; import java.util.Scanner; public class Test { public static void main(String[] args) { Scanner sc = new Scanner(System.in); // 1歩数の距離 int a = sc.nextInt(); // 距離 int b = sc.nextInt(); sc.close(); // 歩数 int count = 0; // 歩行距離 int run = 0; // 歩ききるまで何歩かかるか while(run < b) { run = run + a; count++; } System.out.println(count); } }