ACM Style Contest - Warmup Problems


Problem W - Teletypist's Torment

It is said that teletype operators, after establishing a connection, would type the line:
THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG

You are to write a program whose output is exactly the line above.

Sample Input

This program has no input

Sample Output

THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG

Problem X - There's no problem.

This is a little warmup problem to check that your account is set up correctly, that we can receive your solutions correctly, and that we can judge your solutions and record the results correctly.

The input consists of a number of text lines, terminated by end-of-file. For each line of the input that contains the string "problem", your program should print the word "no" alone on a line. For each line of the input that does not contain the string "problem", your program should print the word "yes" alone on a line. Note that the string "problem" does not need to be separated from other alphabetic text by whitespace or other delimiters; any occurrence of the string will do.

As with all questions, the input sequence is presented on the standard input stream (stdin); the output should be sent to the standard output stream (stdout).

Sample Input

This warm-up problem is easy,
but the contest problems will
be much harder.

Sample Output

no
no
yes