#abc132a. [abc132_a]Fifty-Fifty
[abc132_a]Fifty-Fifty
Problem Statement
You are given a -character string consisting of uppercase English letters. Determine if consists of exactly two kinds of characters which both appear twice in .
Constraints
- The length of is .
- consists of uppercase English letters.
Input
Input is given from Standard Input in the following format:
Output
If consists of exactly two kinds of characters which both appear twice in , print Yes
; otherwise, print No
.
Sample Input 1
ASSA
Sample Output 1
Yes
consists of A
and S
which both appear twice in .
Sample Input 2
STOP
Sample Output 2
No
Sample Input 3
FFEE
Sample Output 3
Yes
Sample Input 4
FREE
Sample Output 4
No