Problem G: 字符串处理(选做)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:4580 Solved:516

Description

编写程序,输入字符串s1和s2以及插入位置f,在字符串s1中的指定位置f处插入字符串s2.如输入"BEIJING", "123", 3,则输出:"BEI123JING".

Input

第一行和第二行分别输入两个字符串s1和s2,第三行输入插入位置f.   每个字符串的长度不超过100个字符.

Output

输出一行插入后的字符串.

Sample Input Copy

BEIJING
123
3

Sample Output Copy

BEI123JING