import java.util.Scanner; class No46 { public static void main(String[] args){ Scanner scn = new Scanner(System.in); int a = Integer.parseInt(scn.next()); int b = Integer.parseInt(scn.next()); int step = 0; while (a > 0) { b -= a; step++; } System.out.println(step); } }