101600: [AtCoder]ABC160 A - Coffee

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

A string of length $6$ consisting of lowercase English letters is said to be coffee-like if and only if its $3$-rd and $4$-th characters are equal and its $5$-th and $6$-th characters are also equal.
Given a string $S$, determine whether it is coffee-like.

Constraints

  • $S$ is a string of length $6$ consisting of lowercase English letters.

Input

Input is given from Standard Input in the following format:

$S$

Output

If $S$ is coffee-like, print Yes; otherwise, print No.


Sample Input 1

sippuu

Sample Output 1

Yes

In sippuu, the $3$-rd and $4$-th characters are equal, and the $5$-th and $6$-th characters are also equal.


Sample Input 2

iphone

Sample Output 2

No

Sample Input 3

coffee

Sample Output 3

Yes

Input

题意翻译

输入一个由 $6$ 个小写字母构成的字符串,如果它的第 $3$ 个字符与第 $4$ 个字符相同且第 $5$ 个字符与第 $6$ 个字符相同,输出 `Yes`;否则输出 `No`。

加入题单

上一题 下一题 算法标签: