Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] args) {
Long l = new Long(1234567890);
// returns a string representation of the long value in base 10
String retval = l.toString();
System.out.println("Value = " + retval);
}
}