# Here's some code to help you get started yearly_tuition = float(input("Enter yearly tuition: ")) yearly_housing = float(input("Enter yearly housing: ")) total_tuition = yearly_tuition * 4 total_housing = yearly_housing * 4 total_cost = total_tuition + total_housing print(f"Your total cost over 4 years will be ${total_cost})