import java.util.Scanner; class No_46 { public static void main(String args[]) { int step = 0; Scanner stdIn = new Scanner(System.in); int feet = stdIn.nextInt(); int length = stdIn.nextInt(); while( feet * step < length ) { step++; } System.out.println(step); } }