游客 Signup | Login
中文 | En

1348 - 算法4-2:字符串连接

通过次数

0

提交次数

0

Time Limit : 1 秒 Memory Limit : 32 MB
将给定的字符串连接起来。书中的算法描述如下:

<p class="MsoNormal" align="center">
	<span style="font-family:宋体;">图:字符串连接算法</span><span></span> 
</p>

Input

三对字符串,每对字符串占一行,用空格隔开。每个字符串只包含数字和英文字母大小写且长度不超过100。

Output

将后一个字符串连接到前一个字符串后面,如果结果字符串长度超过100,输出一行“Result String is cutted.”否则将结果字符串输出来。

Examples

Input Format

hello acmclub
123 456
doyour best

Output Format

helloacmclub
123456
doyourbest