The program that will ask the user for his or her pizza order and display it is as follows:
a = input("what is the size of the pizza(Is it small, medium or big): ")
b = input("what is the type of crust? ")
c = input("what kind of cheese do you want? ")
d = input(" what is the topping? ")
print(f"The size of your pizza is {a}, the crust is {b} and the cheese type and toppings are {c} and {d} respectively")
Code explanation:
The code is written in python;
Then, finally, we print the message for the users order annd display it.
learn more on python code here: https://brainly.com/question/18651677