#P120. Mr. Young's Problem

Mr. Young's Problem

题目描述

Metaverse
With the rapid development of Artificial Intelligence(AI), it is becoming more and more convenient when we are using robots. Recently, the metaverse concept is getting explosion, which is a imagination of the future that the people will socialize in a virtual world called metaverse. What's more fantastic, even the Facebook company changed its name to "Meta" in order to catch up with the "metaverse" topic.
Mr. Young is going to develop a robot that simulates the communication between human, and has a problem while making this kind of robot: How to make a robot that automaticly interacts with human and correctly answer the questions human made?
So He came up with a plan:

  1. When a human says "1", then it answers with "I'm fine, thanks.".
  2. When a human says "2", then it answers with the number of today (output 14).
  3. When a human says "3", then check whether the number given is even. If yes, it will answer with yesyes. Otherwise it will answer with nono.

Do you know how to make a program for him?

Please pay attention to the content inside double quotes!!! Your submission will be accepted once your program has right answers and right output format.

输入格式

The first line contains one number NN.
The next NN lines contains the questions of a human. If the human asks if a number aa is an even number, the next inline number separated with a space will tell the exact number (10-10<aa<200200).

输出格式

Output what the robot answers to the human.
Each line contains one answer and corresponds with a question.

样例

3
1
3 2
3 1
I'm fine, thanks.
yes
no