// CS 101 // MathWizard.java - tries to solve a hard problem public class MathWizard { public static void main(String[] args) { System.out.println("2 plus 3 is..."); System.out.println("...hmmm, let me think..."); //System.out.println("...GOT IT! It's " + 2 + 3); // prints 23 System.out.println("...GOT IT! It's " + (2 + 3)); //prints 5 } }