#codefestival2016qualCa. [codefestival_2016_qualC_a]CF

[codefestival_2016_qualC_a]CF

Problem Statement

This contest is CODEFESTIVAL, which can be shortened to the string CF by deleting some characters.

Mr. Takahashi, full of curiosity, wondered if he could obtain CF from other strings in the same way.

You are given a string ss consisting of uppercase English letters. Determine whether the string CF can be obtained from the string ss by deleting some characters.

Constraints

  • 2s1002 ≤ |s| ≤ 100
  • All characters in ss are uppercase English letters (A-Z).

Input

The input is given from Standard Input in the following format:

ss

Output

Print Yes if the string CF can be obtained from the string ss by deleting some characters. Otherwise print No.


Sample Input 1

CODEFESTIVAL

Sample Output 1

Yes

CF is obtained by deleting characters other than the first character C and the fifth character F.


Sample Input 2

FESTIVALCODE

Sample Output 2

No

FC can be obtained but CF cannot be obtained because you cannot change the order of the characters.


Sample Input 3

CF

Sample Output 3

Yes

It is also possible not to delete any characters.


Sample Input 4

FCF

Sample Output 4

Yes

CF is obtained by deleting the first character.