1. Write a program that takes three positive integers as command-line arguments and prints true if any one of them is strictly greater than the sum of the other two and false otherwise. (Note : This computation tests whether the three numbers could be the lengths of the sides of some nondegenerate triangle.) public class ThreeNums { public static void main(String [] args) { int a = Integer.parseInt(args[0]); int b = Integer.parseInt(args[1]); int c = Integer.parseInt(args[2]); if (a + b < c) { System.out.println("True"); } if (a + c < b) { System.out.println("True"); } if (b + c < a) { System.out.println("True"); } else { System.out.println("False"); } } }