# Start with a value of 0
total_marks = 0
# Input a mark 5 times
for i in range(1, 6):
# Prompt the user for input
mark = float(input(f"Enter mark {i} out of 100: "))
# Create an average at the end
average_mark = total_marks / 5
# Display the total of all values and the average mark
print(f"\nTotal Marks: {total_marks}")
print(f"Average Mark: {average_mark}")