Integer input_count is read from input, representing the number of data samples to be read from input. List values_list contains the data samples read from the remaining input. For each element in values_list:
If the element is greater than 70, output the element followed by ' at index ', the element's index in the list, and 'is flagged'.
Otherwise, output the element followed by ' at index ', the element's index in the list, and 'is normal'.
Click here for example
V 2
Integer input_count is read from input, representing the number of data samples to be read from input. List values_list contains the data samples read from the remaining input. For each element in values_list:
Otherwise, output the element followed by 'at index', the element's index in the list, and 'is normal'.
Click here for example
input_count = int(input)
values_list = []
for i in range(input_count):
values_list.append(int(input()))
# Your code goes here