Write a Java class called TestComparisons.java which takes in two integer command-line arguments, uses the Integer.parseInt() method to convert to int variables a and b, and then prints out a comparison using each of the valid int comparison operators: ==, !=, <, >, <=, >=
In the format (each on a new line), for the example a = 5, b = 6
a = 5; b = 6
a == b is false
a !=b is true
a < b is true
a > b is false
a <= b is true
a >= b is false