import java.util.Scanner;



public class Solution {
    public static void main(String[] args) throws Exception {
        Scanner x = new Scanner(System.in);
        int a = x.nextInt();
        int b = x.nextInt();
        int c = x.nextInt();
        if (a<=b+c && b<=a+c && c<=a+b)
        System.out.println("Треугольник существует.");
        else
        System.out.println("Треугольник не существует.");
    }
}