package integer; public class MaxInt { public static void main(String[] args) { Integer i = Integer.MAX_VALUE - 10; for(int x=0; x<20; x++){ System.out.println( i++ ); } } }