Write a program that fits these conditions using nested conditionals: If the product is expired, print "this product is no good" If the cost is above 50 dollars, and the product isn't expired, print "this product is too expensive" If the cost is 25 dollars but under 50, and the product isn't expired, print "this is a regular product" If the cost is under 25 dollars, print "this is a cheap product"

expired = False
price = 50

if expired == True:
    print("This product is no good")
elif price > 50:
    print("this product is too expensive")
elif price <= 50 and price >= 25:
    print("this is a regular product")
elif price < 25:
    print("this is a cheap product")
this is a regular product