#ABC158A. Station and Bus

Station and Bus

题目描述

In AtCoder City, there are three stations numbered 11, 22, and 33.

Each of these stations is operated by one of the two railway companies, A and B. A string SS of length 33 represents which company operates each station. If SiS_i is A, Company A operates Station ii; if SiS_i is B, Company B operates Station ii.

To improve the transportation condition, for each pair of a station operated by Company A and one operated by Company B, there will be a bus service connecting them.

Determine if there is a pair of stations that will be connected by a bus service.

在 AtCoder City 中,有三个站点,编号分别为 112233

长度为 33 的字符串 SS 表示每个车站由哪家公司运营。如果 SiS_i 为 "A",则 A 公司运营 ii 站;如果 SiS_i 为 "B",则 B 公司运营 ii 站。

为改善交通状况,A 公司运营的车站和 B 公司运营的车站之间将各开通一条公交线路。

请判断是否有一对车站将由巴士服务连接。

输入格式

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

SS

输出格式

如果有一对车站将通过总线服务连接,则打印 "是";否则打印 "否"。

样例 #1

样例输入 #1

ABA

样例输出 #1

Yes

样例 #2

样例输入 #2

BBA

样例输出 #2

Yes

样例 #3

样例输入 #3

BBB

样例输出 #3

No

说明

数据规模与约定

在 AtCoder City 中,有三个站点,编号分别为 112233

长度为 33 的字符串 SS 表示每个车站由哪家公司运营。如果 SiS_i 为 "A",则 A 公司运营 ii 站;如果 SiS_i 为 "B",则 B 公司运营 ii 站。

为改善交通状况,A 公司运营的车站和 B 公司运营的车站之间将各开通一条公交线路。

请判断是否有一对车站将由巴士服务连接。

样例 11 解释

A 公司运营 1133 车站,B 公司运营 22 车站。

在车站 1122 之间以及车站 2233 之间将有公交车服务,请打印 "是"。

样例 22 解释

B 公司运营 1122 站,A 公司运营 33 站。

在车站 1133 之间以及车站 2233 之间将有公交车服务,请打印 "是"。

样例 33 解释

B 公司运营所有车站。因此,将没有公交服务,所以打印