public static void Main()
Console.Write("How many students are on the bus? ");
ns = Convert.ToInt32(Console.ReadLine());
Console.Write("Of the students on the bus how many are weaing red? ");
r = Convert.ToInt32(Console.ReadLine());
Console.Write("Of the students on the bus how many are weaing white ? ");
w = Convert.ToInt32(Console.ReadLine());
Console.Write("Of the students on the bus how many are weaing blue ? ");
b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("=================================================================================");
Console.WriteLine("The percentage of students wearing red it....................................{0}%",r);
Console.WriteLine("The percentage of students wearing white it..................................{0}%", w);
Console.WriteLine("The percentage of students wearing blue it...................................{0}%", b);
Console.WriteLine("The total number of students wearing red, white, and blue is.................{0}%", twc);
Console.WriteLine("The percentage o students wearing red, white, and blue is {0}", level);
Console.WriteLine("=========================================================================");