#Write a program that asks the user to enter the amount that he or she has budgeted for a week.
#A loop should then prompt the user to enter each of his or her expenses for each day of the week and keep a running total.
#When the loop finishes, the program should display the amount that the user is over or under budget.
#Ask user to enter budget amount
budget = int(input('Please enter your budget amount for a week: '))
#Loop
amount = 0
for day in ['Monday: ', 'Tuesday: ', 'Wednesday: ', 'Thursday: ', 'Friday: ', 'Saturday: ', 'Sunday: ']:
print(day)
daily = int(input())
amount = amount + daily
if amount > budget:
print("You are over budget.")
if amount < budget:
print("You are under budget.")
if amount == budget:
print("You are equal to your budget.")