You are given a string $S$ consisting of lowercase English letters.
If `a` appears in $S$, print the last index at which it appears; otherwise, print $-1$. (The index starts at $1$.)
输入格式
The input is given from Standard Input in the following format:
>$S$
#### Constraints
- $S$ is a string of length between $1$ and $100$ (inclusive) consisting of lowercase English letters.
输出格式
Print the answer.
样例输入 #1
abcdaxayz
样例输出 #1
7
样例输入 #2
bcbbbz
样例输出 #2
-1
样例输入 #3
aaaaa
样例输出 #3
5
提示
***For Sample #1:***
`a` appears three times in $S$. The last occurrence is at index $7$, so you should print $7$.
***For Sample #2:***
`a` does not appear in $S$, so you should print $-1$.