eolymp
Competitions

Week 2 Conditionals Part 2

Two identical digits

Time limit 1 second
Memory limit 128 MiB

Four-digit number is given. Determine whether it contains exactly two different digits, each of these digits must occur twice. For example, the numbers 2727 and 6677 satisfy this condition.

Input data

One four-digit number.

Output data

Print "YES" if the number satisfies the specified condition, and "NO" otherwise.

Examples

Input example #1
2323
Output example #1
YES
Input example #2
2224
Output example #2
NO