using System; class walk { static void Main() { int a,b; string[] str = Console.ReadLine().Split(' '); a = int.Parse(str[0]); b = int.Parse(str[1]); Console.WriteLine(b/a); } }