#ABC160A. Coffee

Coffee

题目描述

A string of length 66 consisting of lowercase English letters is said to be coffee-like if and only if its 33-rd and 44-th characters are equal and its 55-th and 66-th characters are also equal.
Given a string SS, determine whether it is coffee-like.

当且仅当长度为 66 的字符串中的 33 -rd 和 44 -th 字符相等,且其 55 -th 和 66 -th 字符也相等时,才可以说该字符串是由小写英文字母组成的 "咖啡状 "字符串。
给定字符串 SS ,判断它是否类似于咖啡。

输入格式

输入内容按以下格式标准输入:

SS

输出格式

如果 SS 类似咖啡,则打印 "是";否则,打印 "否"。

样例 #1

样例输入 #1

sippuu

样例输出 #1

Yes

样例 #2

样例输入 #2

iphone

样例输出 #2

No

样例 #3

样例输入 #3

coffee

样例输出 #3

Yes

说明

数据规模与约定

  • SS 是长度为 66 的字符串,由小写英文字母组成。

样例 11 解释

sippuu 中, 33 -rd 和 44 -th 字符相等, 55 -th 和 66 -th 字符也相等。