#C1441. Taco Competitiveness
Taco Competitiveness
Taco Competitiveness
You are given two integers, A and B, representing the target speed and the robot's processing speed, respectively. Your task is to determine if the robot is competitive in the race by comparing its processing speed to the target speed. If the robot's processing speed is greater than or equal to the target speed, output COMPETITIVE. Otherwise, output NON-COMPETITIVE.
The condition can be mathematically represented as follows:
\( B \geq A \)
If the condition holds, then the robot is competitive; otherwise, it is not competitive.
inputFormat
The input consists of a single line containing two space-separated integers:
- A (the target speed)
- B (the processing speed of the robot)
You should read these values from standard input.
outputFormat
Output a single line with the result:
- Output COMPETITIVE if \(B \geq A\); otherwise, output NON-COMPETITIVE.
The result should be printed to standard output.
## sample50 75
COMPETITIVE