Consider a list called A:
A = [-6, 10, 100, 5, -20, 1000, 9, -15]
Make a for loop that iterates over A and:
If number is negative, print the square of the number.
if number is positive but less than or equal to 100, print the
number itself.
if number is positive but greater than 100, print 0.