Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] args) {
Integer integer1 = new Integer("1");
Integer integer2 = new Integer("2");
System.out.println(integer1);
System.out.println(integer2);
}
}