Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] args) {
long l1 = 1234567890987L, l2 = 123312123L, l3 = -213321123321L;
System.out.println(StrictMath.min(l1, l2));
System.out.println(StrictMath.min(l1, l3));
}
}