using System; namespace yukicoder { class Program { static void Main(string[] args) { int num = 0; string[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]);//現在居る段数 int b = int.Parse(str[1]);//一階層分に相当する段数 num = (a / b)+1; Console.WriteLine(num.ToString()); } } }