The program is an illustration of conditional statements.
Conditional statements can have single condition or multiple conditions
The program written in Python is as follows:
price = 15
timeCheck = int(input("Are you going to the movie before 5PM? (1 - Yes, 0 - No)"))
if timeCheck == 1:
price = 12.5
numPeople = int(input("How many people are going?"))
if numPeople>= 5:
price = price * 0.90 * numPeople
else:
price = price * numPeople
student = int(input("Are you a student? (1 - Yes, 0 - No)"))
if student == 1:
price = price * 0.85
print("The group's price is",price)
Read more about Python programs at:
https://brainly.com/question/13246781
#SPJ1