В чём проблема? не выполняет 3 пункт
package com.javarush.task.pro.task03.task0306;
import java.util.Scanner;
/*
Треугольник
*/
public class Solution {
private static final String TRIANGLE_EXISTS = "треугольник существует";
private static final String TRIANGLE_NOT_EXISTS = "треугольник не существует";
public static void main(String[] args) {
//напишите тут ваш код
Scanner console = new Scanner(System.in);
int a = console. nextInt();
int b = console. nextInt();
int c = console. nextInt();
if (a < b+c || b < a+c || c < a+b){
System.out.println(TRIANGLE_NOT_EXISTS);
}
else if (a>= b+c || b>= a+c || c>= a+b){
System.out.println(TRIANGLE_EXISTS);
}
}
}