No, but seriously. I need help xD
package com.codegym.task.task04.task0415;
/*
Rule of the triangle
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader bu = new BufferedReader(new InputStreamReader(System.in));
int a = Integer.parseInt(bu.readLine());
int b = Integer.parseInt(bu.readLine());
int c = Integer.parseInt(bu.readLine());
if(a + b > c) {
System.out.println("The triangle is possible.");
}
else if(b + c > a) {
System.out.println("The triangle is possible.");
}
else if(a + c > b) {
System.out.println("The triangle is possible.");
}
else {
System.out.println("The triangle is not possible.");
}
}
}