100930: [AtCoder]ABC093 A - abc of ABC

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 string $S$ of length $3$ consisting of a, b and c. Determine if $S$ can be obtained by permuting abc.

Constraints

  • $|S|=3$
  • $S$ consists of a, b and c.

Input

Input is given from Standard Input in the following format:

$S$

Output

If $S$ 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

Input

题意翻译

给你一个字符串$S$ $S$由$a,b,c$三种字符组成 问是否可以通过重排使得$S=abc$ $|S|=3$

加入题单

算法标签: