#ABC160A. Coffee
Coffee
题目描述
A string of length consisting of lowercase English letters is said to be coffee-like if and only if its -rd and -th characters are equal and its -th and -th characters are also equal.
Given a string , determine whether it is coffee-like.
当且仅当长度为 的字符串中的 -rd 和 -th 字符相等,且其 -th 和 -th 字符也相等时,才可以说该字符串是由小写英文字母组成的 "咖啡状 "字符串。
给定字符串 ,判断它是否类似于咖啡。
输入格式
输入内容按以下格式标准输入:
输出格式
如果 类似咖啡,则打印 "是";否则,打印 "否"。
样例 #1
样例输入 #1
sippuu
样例输出 #1
Yes
样例 #2
样例输入 #2
iphone
样例输出 #2
No
样例 #3
样例输入 #3
coffee
样例输出 #3
Yes
说明
数据规模与约定
- 是长度为 的字符串,由小写英文字母组成。
样例 解释
在 sippuu
中, -rd 和 -th 字符相等, -th 和 -th 字符也相等。