using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AtCoder { static class Program { static void Main() { //Console.SetOut(new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }); // int N;int K; Multi(out N, out K); List> Edge = new List>(); for(int i = 0; i < N; i++) { Edge.Add(new List()); } for(int i = 0; i < N - 1; i++) { var cin = GetIntArray().Select(s => s - 1).ToArray(); Edge[cin[0]].Add(cin[1]); Edge[cin[1]].Add(cin[0]); } int[] dist = Enumerable.Repeat(-1, N).ToArray(); var que = new Queue(); que.Enqueue(0); dist[0] = 0; while (que.Count > 0) { var n = que.Dequeue(); foreach(var e in Edge[n]) { if (dist[e] == -1) { dist[e] = dist[n] + 1; que.Enqueue(e); } } } int ans; if (dist.Count(d => d != -1) >= K) { ans = K - 1; } else { ans = -1; } Console.WriteLine(ans); // //Console.Out.Flush(); Console.ReadKey(); } static public string GetStr() { return Console.ReadLine().Trim(); } static public int GetInt() { return int.Parse(Console.ReadLine()); } static public long GetLong() { return long.Parse(Console.ReadLine()); } static public string[] GetStrArray() { return Console.ReadLine().Split(' '); } static public int[] GetIntArray() { return Console.ReadLine().Split(' ').Select(int.Parse).ToArray(); } static public long[] GetLongArray() { return Console.ReadLine().Split(' ').Select(long.Parse).ToArray(); } static public char[] GetCharArray() { return Console.ReadLine().Split(' ').Select(char.Parse).ToArray(); } static public List GetDoubleList() { return Console.ReadLine().Split(' ').Select(double.Parse).ToList(); } static public void WriteObjects(IEnumerable values) { foreach (var o in values) { Console.Write(o + " "); } } static string yesno(this bool b) { return b ? "yes" : "no"; } static string YesNo(this bool b) { return b ? "Yes" : "No"; } static string YESNO(this bool b) { return b ? "YES" : "NO"; } static bool eq() => typeof(T).Equals(typeof(U)); static T ct(U a) => (T)Convert.ChangeType(a, typeof(T)); static T cv(string s) => eq() ? ct(int.Parse(s)) : eq() ? ct(long.Parse(s)) : eq() ? ct(double.Parse(s)) : eq() ? ct(s[0]) : ct(s); static void Multi(out T a) => a = cv(GetStr()); static void Multi(out T a, out U b) { var ar = GetStrArray(); a = cv(ar[0]); b = cv(ar[1]); } static void Multi(out T a, out U b, out V c) { var ar = GetStrArray(); a = cv(ar[0]); b = cv(ar[1]); c = cv(ar[2]); } static void Multi(out T a, out U b, out V c, out V d) { var ar = GetStrArray(); a = cv(ar[0]); b = cv(ar[1]); c = cv(ar[2]); d = cv(ar[3]); } } }