A restaurant bills a customer for one main dish. Four lines are read from the input, in this order:
main_dish - the name of the dish.time_of_day - the hour of the order as an integer on the 24-hour clock.has_voucher - the text True or False.is_card_payment - the text True or False.The base cost is 250 for paneer tikka, 240 for butter chicken and 200 for masala dosa. For any other dish, print Invalid main dish and stop.
Then adjust the cost in this order:
time_of_day is between 12 and 15, both included.Print the final amount rounded to exactly two decimal places.
Write a complete program: read the input with input() and print the result with print().
Input
paneer tikka
13
True
True
Output
200.81