Problem

6 /13


Addition and multiplication

Theory Click to read/hide

Strings can be added together using the "+" sign. This operation is called string concatenation or concatenation
For example, 

s := 'Hi, ';
s1 := 'world';
writeln(s + s1);
The screen will display the phrase "Hello world" (without quotes).

Problem

The first line specifies the username
Display:
1) in the first line - a greeting to the user in the form "Hello, name!" (without quotes)
2) in the second line - print the username 10 times separated by a space.