import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner sc = new Scanner(System.in); //一歩の歩幅 int a = sc.nextInt(); //歩く距離 int b = sc.nextInt(); //歩数 int step = b / a; if(b % a != 0) { step++; } System.out.println(step); } }