/**
 * simple printing exercise
 *
 * @author Mark Young (A00000000)
 */
public class SimplePrint {

    /**
     * Run this program.
     *
     * @param args command lines arguments (ignored)
     */
    public static void main(String[] args) {
        int here = 5;
        int there = 42;
        double anyWhere = 2.5;

        System.out.println(here + "there" + anyWhere);
    }

}
