#abc158a. [abc158_a]Station and Bus

[abc158_a]Station and Bus

Problem Statement

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.

Constraints

  • Each character of SS is A or B.
  • S=3|S| = 3

Input

Input is given from Standard Input in the following format:

SS

Output

If there is a pair of stations that will be connected by a bus service, print Yes; otherwise, print No.


Sample Input 1

ABA

Sample Output 1

Yes

Company A operates Station 11 and 33, while Company B operates Station 22.

There will be a bus service between Station 11 and 22, and between Station 22 and 33, so print Yes.


Sample Input 2

BBA

Sample Output 2

Yes

Company B operates Station 11 and 22, while Company A operates Station 33.

There will be a bus service between Station 11 and 33, and between Station 22 and 33, so print Yes.


Sample Input 3

BBB

Sample Output 3

No

Company B operates all the stations. Thus, there will be no bus service, so print No.