# Arup Guha
# 5/13/2022
# Solution to SI@UCF Program: Lunch

# Cost of favorite meal.
FAV_MEAL = 8.00

money = float(input("How much money did your parents give you for lunch?\n"))

# Max we should spend on one day.
oneDay = money/5

# We are limited by max.
if oneDay < FAV_MEAL:
    print("You will spend $",oneDay," for lunch on Monday.", sep="")

# We have enough so get the fav!
else:
    print("You will spend $8.00 for lunch on Monday.")
