// This program displays the sum of 2.7 and 4.2.
// Barry Cornelius, 29 May 2000
public class ImprovedSimpleSum
{
   public static void main(final String[] pArgs)
   {
      final double tFirst = 2.7;
      final double tSecond = 4.2;
      final double tSum = tFirst + tSecond;
      System.out.println("The sum of " + tFirst +
                         " and " + tSecond + " is " + tSum);
   }
}
