101320: [AtCoder]ABC132 A - Fifty-Fifty

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

You are given a $4$-character string $S$ consisting of uppercase English letters. Determine if $S$ consists of exactly two kinds of characters which both appear twice in $S$.

Constraints

  • The length of $S$ is $4$.
  • $S$ consists of uppercase English letters.

Input

Input is given from Standard Input in the following format:

$S$

Output

If $S$ consists of exactly two kinds of characters which both appear twice in $S$, print Yes; otherwise, print No.


Sample Input 1

ASSA

Sample Output 1

Yes

$S$ consists of A and S which both appear twice in $S$.


Sample Input 2

STOP

Sample Output 2

No

Sample Input 3

FFEE

Sample Output 3

Yes

Sample Input 4

FREE

Sample Output 4

No

Input

题意翻译

有长度为 $4$ 的由大写英文字母构成的串 $S$ ,问其是否恰好含有两种不同字母且这两种字母都恰好出现两次。 ### 输入格式 $S$ 。 ### 输出格式 如果符合要求输出`Yes`,否则输出`No`。

加入题单

算法标签: