using System;
namespace _013_条件语句_if语句
{
class Program
{
static void Main(string[] args)
{
//int x = Convert.ToInt32(Console.ReadLine());
//int y = Convert.ToInt32(Console.ReadLine());
//if (x > 0 && y > 0)
//{
// Console.WriteLine("位于第一象限");
//}else if (x < 0 && y > 0)
//{
// Console.WriteLine("位于第二象限");
//}
//else if (x < 0 && y < 0)
//{
// Console.WriteLine("位于第三象限");
//}
//else if (x > 0 && y < 0)
//{
// Console.WriteLine("位于第四象限");
//}else if (0 == x && y != 0)
//{
// Console.WriteLine("位于y轴上");
//}
//else if (0 == y && x != 0)
//{
// Console.WriteLine("位于x轴上");
//}
//else
//{
// Console.WriteLine("位于原点");
//}
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
int c = Convert.ToInt32(Console.ReadLine());
if (a + b > c && a + c > b && b + c > a)
{
Console.WriteLine("可以组成三角形");
}
else
{
Console.WriteLine("不可以组成三角形");
}
}
}
}