2156: 子串第一次出现的位置(提高)

Memory Limit:128 MB Time Limit:1.000 S
Creator:
Submit:2 Solved:1

Description

输入两个字符串s1, s2; 查找s2第一次出现在s1的位置(对应着s1的下标的位置);

Input

两行, 每行一个字符串

Output

s2出现在s1的下标的位置;

Sample Input

abcdefghij
def

Sample Output

3