Read the following short scenario, then answer the question that follows.

As stated before, Crazy Chicken will award their customers discounts based on the number of times
they have ordered from the store. The discount for which the customer qualifies is summarised in the
table below.
Number of purchases Percentage Discount
0-5 0
6 - 10 10
11 or more 20
Q.2.1 Assume that a customer can capture the number of orders they placed per month
for the past year. E.g., in month one they ordered three times, in month two they
ordered once, in month three they ordered five times, etc.
Now write the pseudocode that will make use of a loop that asks a user to enter the
number of orders they have placed for each month over the past year (12 months).
Calculate and display the total number of orders that were placed by the customer
over the past year. Then based on the number of purchases they made; display the
percentage discount they qualify for.

total_orders = 0

for i in range(12):
orders = input("Enter number of orders for month " + str(i+1) + ": ")
total_orders += int(orders)
if total_orders <= 5:
discount = 0
elif total_orders <= 10:
discount = 10
else:
discount = 20
print("Total orders placed:", total_orders)
print("Percentage discount qualified for:", discount)