Whаt wоuld be the оutput оf the following code? If there is аn error, write "ERROR" prices = [15, 30, 8, 55, 22, 7, 40]totаl_cost = 100for p in prices: if p > 20: if p % 5 == 0: total_cost += 10 else: total_cost -= 5 else: if p < 10: total_cost += p // 2 else: total_cost -= 8print(total_cost)