import java.util.Scanner; public class Question_01_0509_2 { public static void main(String[] args){ Scanner sc = new Scanner(System.in); long num1 = 0; long num2 = 0; long result; try { num1 = sc.nextLong(); num2 = sc.nextLong(); //a b ともに正の整数。(1≤a,b≤10の9乗=1000000000) if (num1 > 0 && num2 > 0 && num2 <= Math.pow(10, 9)){ result = num2 / num1; if (num2 % num1 != 0){ result += 1; } System.out.println(result); } else { System.out.println("1≤a,b≤10の9乗=1000000000の範囲内で入力して下さい。"); } } catch (java.util.InputMismatchException e){ System.out.println("数値または、10の9乗=1000000000の範囲内で入力して下さい。"); } finally { sc.close(); } } }