using System;
namespace ConsoleApp1
{
class Program
static void Main(string[] args)
int a, b, c;
Console.Write("Введите a: ");
a = Convert.ToInt32(Console.ReadLine());
Console.Write("Введите b: ");
b = Convert.ToInt32(Console.ReadLine());
Console.Write("Введите c: ");
c = Convert.ToInt32(Console.ReadLine());
if ((a + b > 0) || (a + c > 0) || (b + c > 0))
Console.WriteLine("Сумма двух из введенных чисел положительна");
}
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
int a, b, c;
Console.Write("Введите a: ");
a = Convert.ToInt32(Console.ReadLine());
Console.Write("Введите b: ");
b = Convert.ToInt32(Console.ReadLine());
Console.Write("Введите c: ");
c = Convert.ToInt32(Console.ReadLine());
if ((a + b > 0) || (a + c > 0) || (b + c > 0))
Console.WriteLine("Сумма двух из введенных чисел положительна");
}
}
}