An array and an integer

Report a typo

The input consists of three lines, with each line containing a single element. Use these three elements to create an array. Check whether the elements are less or equal to 67. Print the resulting Boolean array.

Sample Input 1:

67
78
87

Sample Output 1:

[ True False 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