BeginnerConditionals2000 ms256 MB
Number Guessing Helper
Given a secret number and a guess, print whether the guess is low, high, or correct.
Statement
Given a secret number and a guess, print whether the guess is low, high, or correct.
Input
Two integers: secret and guess.
Output
`low`, `high`, or `correct`.
Constraints
- `1 <= secret, guess <= 1000`
Examples
Example 1
Input
42 30Output
lowThe guess is below the secret.
Sample runs use visible examples. Full submissions are checked securely on the server, and private test cases are not shown in the browser.