class Example2 { /* Surprisingly, "being an integer" is not sufficient! * Adding one to the following number "overflows" and * produces a really unintuitive result! Try it! */ public static void main(String[] args) { int x = 2147483647; System.out.println(x + 1); } }