import java.util.Scanner; class Nho{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int answer = b / a; if( b % a > 0){ answer++; }else{} System.out.println(answer); } }