Problem4663--String基本练习:查找(一)

4663: String基本练习:查找(一)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

STL string基本练习题。
按照要求在字符串 $S_1$ 中寻找第一个字符 ch 的位置。如果找到,输出 ch 对应的位置。否者输出 $-1$。

Input

两行。
第一行一个字符串 $S_1$。
第二行一个字符 ch。

Output

一个整数。字符 ch 在字符串 $S_1$ 中第一次出现的位置。

Sample 1 Input

Hello, World!
l

Sample 1 Output

2

Sample 2 Input

abc
d

Sample 2 Output

-1

Source/Category

STL 3.6.string