#Write a program that first reads the number of items in the store then #reads price for each item all prices are stored in the list called #prices the program finds and prints the number of items that cost 100 dollars #and below and the number of items that cost above 100 dollars def main(): num_items=int(input("enter number of items ")) prices=[] for i in range(num_items): price=float(input("enter price ")) prices.append(price) print("list of prices") print(prices) c_100=0 c=0 for i in range(num_items): if(prices[i]>100): c_100+=1 else: c+=1 print(c_100, c) main()