public static void Main()
Console.WriteLine("Въведи страна а: ");
int a = int.Parse(Console.ReadLine());
Console.WriteLine("Въведи страна b: ");
int b = int.Parse(Console.ReadLine());
Console.WriteLine("Въведи страна c: ");
int c = int.Parse(Console.ReadLine());
if(a+b>c && b+c>a && c+a>b)
Console.WriteLine("Error");