public static void Main() {
Console.Write("Введіть першу сторону: ");
int a = int.Parse(Console.ReadLine());
Console.Write("Введіть другу сторону: ");
int b = int.Parse(Console.ReadLine());
Console.Write("Введіть третю сторону: ");
int c = int.Parse(Console.ReadLine());
Console.WriteLine("Рівносторонній");
else if((a != b) && (b != c) && (a != c))
Console.WriteLine("Різносторонній");
else if(((a == b) && (a != c)) ((a == c) && (a != b)) ((b == c) && (b != a)))
Console.WriteLine("Рівнобедренний");