# Define the timetable as a dictionary with days of the week as keys
timetable = {
    "Monday": ["Math", "History", "Physics"],
    "Tuesday": ["English", "Chemistry", "Biology"],
    "Wednesday": ["Geography", "Computer Science", "Art"],
    "Thursday": ["Physical Education", "Music", "Spanish"],
    "Friday": ["Literature", "Economics", "French"]
}

# Print the timetable
for day, subjects in timetable.items():
    print(day)
    for subject in subjects:
        print("- " + subject)
    print()