Checking True values

Report a typo

There are three elements on each line in the input. Use them to create an array. Then check whether all array elements are greater than 15. Use a function that prints True if all the values meet the requirement, or False if they don't. The output must contain one Boolean value: True or False.

Sample Input 1:

1
4
15

Sample Output 1:

False
Write a program in Python 3
import numpy as np

a = int(input())
b = int(input())
c = int(input())
___

Create a free account to access the full topic