public static void Main()
Console.WriteLine("give me a measurement of the side for a triangle");
a = int.Parse(Console.ReadLine());
Console.WriteLine("Now another");
b = int.Parse(Console.ReadLine());
Console.WriteLine("And the Last One");
c = int.Parse(Console.ReadLine());
Console.WriteLine("The Triangle is equilateral");
else if (a == b || b == c || c == a )
Console.WriteLine("The triangle is isoceles");
Console.WriteLine("The triangle is scalene");