2.15.4 Three Strings
100 points - incorrect answers removed
Basic java - Codehs.com
instructions -
Write a program that asks the user for three strings.

Then, print out whether the first string
concatenated to the second string is equal to the
third string. Here are a few sample program runs:

Sample Program 1:

First string? pepper
Second string? mint
Third string? peppermint
pepper + mint is equal to peppermint!
Sample Program 2:

First string? go
Second string? fish
Third string? donuts
go + fish is not equal to donuts!
---------------------------------
starter code -
public class ThreeStrings extends ConsoleProgram
{
public void run()
{
// Ask the user for three strings.
// remember to use the readLine() method.
}
}