using System; namespace test_2 { class Program { static void Main(string[] args) { string[] n = Console.ReadLine().Split(' '); ulong x = ulong.Parse(n[0]); ulong x2 = ulong.Parse(n[1]); if(x2 % x == 0) { Console.WriteLine(x2 / x); } else { Console.WriteLine((x2 / x)+1); } } } }