using System; namespace DrawCircle { class Program { static void Main(string[] args) { string[] param = Console.ReadLine().Split(' '); int Px = int.Parse(param[0]); int Py = int.Parse(param[1]); double r = Math.Sqrt( Math.Pow(Px, 2) + Math.Pow( Py , 2) ); double d = r % 1; r = Math.Truncate(r); r = ( d < 0.5 ) ? ( r + 0.5 ) : ( r + 1 ); Console.WriteLine( r * 2 ); } } }