游客 Signup | Login
中文 | En

1197 - C语言7.21

通过次数

0

提交次数

0

Time Limit : 1 秒 Memory Limit : 32 MB

读入两个字符串s1和s2,将s2中的全部字符复制到字符数组s1中去。要求不使用strcpy函数,并保证字符串末尾的’\0’标识符同时被赋值。

Input

两行字符串s1和s2。保证每个字符串的长度不超过100。

Output

将s2赋值至s1后的s1对应的字符串。

请注意行尾输出换行。

Examples

Input Format

I am a program.
I am not a program.

Output Format

I am not a program.