Problem L
Concatenate

You and Jon are competing in who can write code with the fewest lines as possible. You just realised that the measure used to determine the winner is not who has the fewest characters, but rather the fewest lines. Thus you decide to cram all your code into a single line. However, that is a lot of code so you decide to write a program to concatenate the lines for you.
Input
The input consists of two lines. The first line contains the string $s$. The second line contains the string $t$. Neither line is empty. Only alphabetical letters, digits and the symbols $($, $)$ and r2 will appear in each of the lines.
Output
A line with $s$ and $t$ concatenated.
Scoring
Groups |
Points |
Constraints |
1 |
100 |
There are at most $100$ characters in each of $s$ and $t$. |
Sample Input 1 | Sample Output 1 |
---|---|
print("Hello") print("World") |
print("Hello")print("World") |
Sample Input 2 | Sample Output 2 |
---|---|
Mine craft |
Minecraft |
Sample Input 3 | Sample Output 3 |
---|---|
Einar Darri |
EinarDarri |