//TestNumberAndStringOutput.java

public class TestNumberAndStringOutput
{
    public static void main(String args[])
    {
        //Be careful to distinguish between the following ...
        //===================================================
        System.out.println(2 + 9 + " is the sum.");
        System.out.println("The sum is " + 2 + 9 + ".");
    }
}

