游客 Signup | Login
中文 | En

1215 - C语言8.18

通过次数

0

提交次数

0

Time Limit : 1 秒 Memory Limit : 32 MB

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

Input

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

Output

将两个字符串拼接完成的字符串。

请注意行尾输出换行。

Examples

Input Format

This is a program.
This is not a program.

Output Format

This is a program.This is not a program.