import java.util.Scanner; public class No477 { public static void main(String[] args) { Scanner s = new Scanner(System.in); long hp = s.nextLong(); long help = s.nextLong(); System.out.println(hp / (help + 1) + 1); } }