C语言8.18

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

Input

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

Output

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

Examples

Input

This is a program.
This is not a program.

Output

This is a program.This is not a program.

来源

教学题-C语言
Time limit 1 second
Memory limit 32 MB
讨论 统计