#P26. [KBC001A] Good 1
[KBC001A] Good 1
Source
This problem is adapted from Long Long OJ. All rights reserved.
Description
You're given strings consisting of lowercase English letters. Determine if these strings are good.
The definition of good strings:
- Set the string obtained by concatenating these strings to .
- consisting all of lowercase English letters.
- The length of is less than or equal .
If these strings are good, print The quick brown fox jumps over a lazy dog.
, otherwise print Cwm fjord bank glyphs vext quiz.
.
Input
The first line consists of an integer .
lines consisting of a string with lowercase English letters respectively follow.
Output
One line consisting of the string The quick brown fox jumps over a lazy dog.
or Cwm fjord bank glyphs vext quiz.
.
Samples
10
abcdef
ghij
klmn
opq
rst
u
v
wxy
z
z
The quick brown fox jumps over a lazy dog.
2
abcdefg
hijklmnopqrstuvvvxyz
Cwm fjord bank glyphs vext quiz.
Tips
- .
- .