Output Statement, revisited
Output statement
System.out.println( expression )
If the type of expression is String (i.e., text), then the value of expression is output
Otherwise, the value of expression is �converted to a string�, which is then output.
System.out.println( �even� );