What will be the output of the following program?
public class LongDivision {
private static final long VALUE1 = 24 * 60 * 60 * 1000;
private static final long VALUE2 = 24 * 60 * 60 * 1000 * 1000;
public static void main(String[] args) {
System.out.print(VALUE2 / VALUE1);
}
}