import java.util.Scanner; class No_388{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int s = sc.nextInt(); int f = sc.nextInt(); System.out.println(s / f + 1); } }