/* Program to show string concatenation * * Author: Carsten Butz * Date: September 2002 * */ import tio.*; public class StringConcat { public static void main (String[] args){ int first, second; System.out.println("Please enter two integer numbers: "); first = Console.in.readInt(); second = Console.in.readInt(); System.out.print("The sum of " + first + " and " + second); System.out.println( "is " + first + second + "."); } }