import java.io.*; public class Solution { public static void main(String[] args) throws Exception { //напишите тут ваш код BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String s = reader.readLine(); String f = reader.readLine(); String t = reader.readLine(); int a = Integer.parseInt(s); int b = Integer.parseInt(f); int c = Integer.parseInt(t); if ((a + b > c) || (a + c > b) || (b + c > a)) { System.out.println("Треугольник существует."); } else System.out.println("Треугольник не существует."); } }