Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] args) {
Short shortValue1 = new Short("10");
Short shortValue2 = new Short("11");
System.out.println(shortValue1.compareTo(shortValue2));
}
}