Given an integer , determine whether Vladik can be courteous according to the problem's rule, and print the corresponding result.
Problem
Vladik has a number of guests to greet. The answer depends on a simple parity-based rule: for a given integer , decide which of two possible responses should be produced.
Your task is to read the integer and output the correct response exactly as required.
This is an implementation-style problem with a very small amount of logic, meant to test careful reading and output formatting.
Input Format
- A single integer .
Output Format
- Print the required response for the given .
Constraints
Input Format
A single integer .
Output Format
Print the required response determined by the value of .
Constraints
Example 1
Input
1
Output
poor conductor
Explanation
For this value, the required response is the negative one.
Example 2
Input
2
Output
chef
Explanation
For this value, the required response is the positive one.
Premium problem context
Unlock deeper context for this problem
Premium adds guided hints, editorial links, similar variants, discussion resources, and concept maps so you can understand why a problem matters, not just solve it once.