PROBLEM 73
Medium

User Registration

Programming Basics · Python

</>
STATUS Not solved

TASK

Problem

#73

Given `age` and password length `length`, registration is allowed for age ≥13 and length ≥8. Print `OK` or `REJECTED`.

EXAMPLE

Example

Input
15 10
Output
OK

LIMITS

Constraints

0 ≤ age ≤ 120; 0 ≤ length ≤ 100
📖
LEARN Theory for this problem
+

`input()` reads data entered by the user. The result of `input()` is initially a string. `split()` separates one input line into individual values using spaces. `map()` applies the specified conversion to each input value. Comparison operators `==`, `!=`, `<`, `>`, `<=`, `>=` compare values and produce `True` or `False`. `and` requires all combined conditions to be true. `if` checks a condition and runs its block when the condition is true. `else` runs when the corresponding `if` condition is false. `print()` displays the program result. Print only what the problem statement requires.

**Connection to this task.** An `if` statement chooses a program branch from a Boolean condition. Comparisons produce `True` or `False`, and `elif` lets you test several mutually exclusive cases in order. The expression `'OK'` shows how this idea is applied to the task data.

💡
NEED HELP? Hints
+

['Combine the two requirements with `and`.']

ANSWER Solution
+
a, l = map(int, input().split())
if a >= 13 and l >= 8:
    print('OK')
else:
    print('REJECTED')