Consider this code:
int x = 17; int y = 013; System.out.println(\"x+y = \" + x + y);
When I run this code I get the output 1711. Can anybod
It appears to be interpreting y as using octal notation (which evaluates to 11). Also, you're concatenating the string representations of x and y in System.out.printLn.