package yukicoder; import java.util.Scanner; public class Problem43 { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 try (Scanner sc = new Scanner(System.in)) { // int 1つ分を読み込む int a = sc.nextInt(); int b = sc.nextInt(); int result = b / a; if (b % a != 0) { result++; } System.out.println(result); } } }