#P26. [KBC001A] Good 1

[KBC001A] Good 1

Source

This problem is adapted from Long Long OJ. All rights reserved.

Description

You're given NN strings S1,S2,,SN1,SNS_1,S_2,\cdots,S_{N-1},S_N consisting of lowercase English letters. Determine if these NN strings are good.

The definition of good strings:

  • Set the string obtained by concatenating these strings to TT.
  • TT consisting all of lowercase English letters.
  • The length of TT is less than or equal 4040.

If these NN 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 NN.

NN lines consisting of a string SiS_i 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

  • 1N401\leq N\leq 40.
  • 1Si261\leq|S_i|\leq26.