100 atcoder#ABC158A. [ABC158A] Station and Bus
[ABC158A] Station and Bus
Score : points
Problem Statement
In AtCoder City, there are three stations numbered , , and .
Each of these stations is operated by one of the two railway companies, A and B. A string of length represents which company operates each station. If is A
, Company A operates Station ; if is B
, Company B operates Station .
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.
Constraints
- Each character of is
A
orB
.
Input
Input is given from Standard Input in the following format:
Output
If there is a pair of stations that will be connected by a bus service, print Yes
; otherwise, print No
.
ABA
Yes
Company A operates Station and , while Company B operates Station .
There will be a bus service between Station and , and between Station and , so print Yes
.
BBA
Yes
Company B operates Station and , while Company A operates Station .
There will be a bus service between Station and , and between Station and , so print Yes
.
BBB
No
Company B operates all the stations. Thus, there will be no bus service, so print No
.