using System; using System.Linq; class B { static void Main() => Console.WriteLine(Console.ReadLine().Split().Select(int.Parse).Min()); }