public static void Main()
Console.WriteLine("Enter values a,b,c,d");
string x=Console.ReadLine();
a=Convert.ToInt32(x.Split(' ')[0]);
b=Convert.ToInt32(x.Split(' ')[1]);
c=Convert.ToInt32(x.Split(' ')[2]);
d=Convert.ToInt32(x.Split(' ')[3]);
Console.Write("The greatest value is ");
if((a>b) && (a>c) && (a>d))