import java.util.*; public class Pract6 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s1 = sc.next(); String s2 = sc.next(); int a = Integer.parseInt(s1); int b = Integer.parseInt(s2); int c = b / a + 1; System.out.println(c); } }