1213: C语言8.18

Memory Limit:32 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:4 Solved:2

Description

写一个函数,将两个字符串连接并保存至第一个字符串的位置。

Input

有两行,每行一个可能包含空格的字符串。保证每个字符串的长度不超过100。

Output

将两个字符串拼接完成的字符串。
请注意行尾输出换行。

Sample Input Copy

This is a program.
This is not a program.

Sample Output Copy

This is a program.This is not a program.

Source/Category