Job

Report a typo

Julia wants to get a job. By the laws of the country she lives in, she can have a job only if her age is within 18 to 59 years inclusive.

Depending on the input age, output true if she can get a job, otherwise output false.

Sample Input 1:

25

Sample Output 1:

true

Sample Input 2:

16

Sample Output 2:

false
Write a program in Kotlin
fun main() {
// write your code here
}
___

Create a free account to access the full topic