Warmup Problem R

It is said that teletype operators, after establishing a connection, would type the line:
THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG
This line is apropos because it contains every letter of the alphabet. You are to test other lines to see if they have a similar property.

The Input

The input to your program consists of several test cases, each consisting of a line containing uppercase letters of the alphabet and spaces. A line containing a single hyphen ("-") follows the last test case.

The Output

For every test case, print
Sufficient.
if it contains every letter of the alphabet, or
Deficient.
if it does not.

Sample Input

NOW IS THE TIME FOR ALL GOOD MEN TO COME TO THE AID OF THE PARTY
THE FOX BROWN JUMPS QUICK DOG LAZY OVER
-

Output for Sample Input

Deficient.
Sufficient.