PROBLEM 74
Medium

Loan Conditions

Programming Basics · Python

</>
STATUS Not solved

TASK

Problem

#74

Given `age`, monthly `income`, and current `debt`. Loan is approved if 18≤age≤65, income≥50000, and debt=0.

EXAMPLE

Example

Input
30 70000 0
Output
APPROVED

LIMITS

Constraints

0 ≤ age ≤ 120; income ≥ 0; debt ≥ 0
📖
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 `'APPROVED'` shows how this idea is applied to the task data.

💡
NEED HELP? Hints
+

['All three requirements must be true.']

ANSWER Solution
+
a, i, d = map(int, input().split())
if 18 <= a <= 65 and i >= 50000 and (d == 0):
    print('APPROVED')
else:
    print('DENIED')