What will be the output of the following program?
public class Loopy {
public static void main(String[] args) {
final int start = Integer.MAX_VALUE - 100;
final int end = Integer.MAX_VALUE;
int count = 0;
for (int i = start; i <= end; i++)
count++;
System.out.println("Output=" + count);
}
}