Answer:
Explanation:
#no programing language stated, but using python.
awardPoints = 0
userTickets = 4
userTickets = int(input("Enter the number tickets")) #this statement gets the user input
If userTickets < 5: #this test the first user input
awardPoints = 1
elif userTickets ==3:
awardPoints = 1
else:
awardPoints = userTickets
print("The awardpoints is ", awardPoints)