Problem A: 字符串的连接

Problem A: 字符串的连接

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 428  Solved: 270
[Submit] [Status] [Web Board] [Creator:]

Description

将两行字符串连接。 每行字符串的长度不超过100。

建议使用 puts 和 gets 函数,不适合使用scanf函数。

scanf函数读入空格分开的字符串

参考:http://learn.siso.edu.cn/c/?p=2572

Input

两行字符串

Output

链接后的字符串

Sample Input

123
abc

Sample Output

123abc