print("Welcome to Contoso!") a = input("What is your name? ") b = input("How can we help you, " + a +'? ') print("We can help you with that.") c = input("Would you like to see more information? yes or no ") no = ("Come again!") yes = ("Detailed software packages go here.") if c=='yes' : print(yes) d = input ("Are you satisfied with our Customer Service? yes or no ") if d=='yes': print('Thanks for your patronage. Come again!') else: e = input('What can we help you with? ') f = input("Press any key to continue...") # add more logic here
Output
Notes