Problem2199--ABC158A-Station and Bus

2199: ABC158A-Station and Bus

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Problem Statement

In AtCoder City, there are three stations numbered 1122, 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 S_iSi is A, Company A operates Station ii; if S_iSi 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| = 3S=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.

Input



Output



Sample Input Copy

ABA

Sample Output Copy

Yes

Source/Category