2441 - 【入门】字符串中的查找

输入两个字符串,看看第一个字符串中找到/找不到第二个字符串。

Input

读入两个字符串到 s1 和 s2。

Output

如果找到,输出查找到的位置索引;

如果没有查找到,输出 NO。

Examples

Input

abcdefghigklmn
def

Output

3
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题