using System; namespace yukicoder { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int num = 0; int ans = 0; int a = int.Parse(str[0]); int b = int.Parse(str[1]); for(; ; ) { ans += a; num++; if (ans >= b) { Console.WriteLine(num.ToString()); break; } } } } }