import java.util.Scanner; public class walk { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int step = sc.nextInt(); int dist = sc.nextInt(); if(0 == dist % step ) { System.out.println(dist / step); }else {System.out.println(dist / step + 1); } } }