using System;

namespace yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] str = Console.ReadLine().Split(' ');

            //現在いる段数
            int S = int.Parse(str[0]);
            //一階層分に相当する段数
            int F = int.Parse(str[1]);

            int num = 0;

            num = S / F;
            if(num==0)
            {
                num = 1;
            }
            else if(S%F==0||S%F==1||S%F==2||S%F==8||S%F==9)
            {
                num += 1;
            }
            Console.WriteLine(num.ToString());
        }
    }
}