#abc093a. [abc093_a]abc of ABC
[abc093_a]abc of ABC
Problem Statement
You are given a string of length consisting of a
, b
and c
. Determine if can be obtained by permuting abc
.
Constraints
- consists of
a
,b
andc
.
Input
Input is given from Standard Input in the following format:
Output
If can be obtained by permuting abc
, print Yes
; otherwise, print No
.
Sample Input 1
bac
Sample Output 1
Yes
Swapping the first and second characters in bac
results in abc
.
Sample Input 2
bab
Sample Output 2
No
Sample Input 3
abc
Sample Output 3
Yes
Sample Input 4
aaa
Sample Output 4
No