#SDNU1713. Takahashi san 2

Takahashi san 2

Problem Statement

KEYENCE has a culture of addressing everyone with the suffix "-san," regardless of roles, age, or positions.

You are given a string SS consisting of lowercase English letters.
If SS ends with san, print Yes; otherwise, print No.

Constraints

  • SS is a string of length between 44 and 3030, inclusive, consisting of lowercase English letters.

Input

The input is given from Standard Input in the following format:

SS

Output

If SS ends with san, print Yes; otherwise, print No.

Sample Input 1

takahashisan

Sample Output 1

Yes

The string S=S= takahashisan ends with san, so print Yes.

Sample Input 2

aokikun

Sample Output 2

No

The string S=S= aokikun does not end with san, so print No.