Problem11208--ABC374 - A - Takahashi san 2

11208: ABC374 - A - Takahashi san 2

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

Description

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

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

Input

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

$S$

Output

If $S$ ends with san, print Yes; otherwise, print No.

Constraints

$S$ is a string of length between $4$ and $30$, inclusive, consisting of lowercase English letters.

Sample 1 Input

takahashisan

Sample 1 Output

Yes

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

Sample 2 Input

aokikun

Sample 2 Output

No

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

Source/Category