✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
double X;
string msg;
X = double.Parse (System.Console.ReadLine ());
if (X <1) msg = "Зліва";
else if (X> 1 && X <4) msg = "Всередині";
else msg = "Справа";
System.Console.WriteLine (msg);
(**CharpBase**)