Please help me with the task: Equalize the weight

Hello, I’m working on this task:

Simon is almost ready to go wisit the C gang, but there is still one thing to do. It appeared that the team members have packed completely different backpacks, so that some of them are very heavy and others - too light.
Your task is to help Simon by writing a program that finds an average weight of all the backpacks and outputs it to the screen. Your program should read integers from the console, until the input is “done”. Place all the values in the int list. Afte that, find the average of all elements (their sum divided by their number) and output it to the screen.

Example:
>18
>10
>15
>13
>done
14

Here is my code:

using System.Collections.Generic;

namespace Lists
{
   public class EqualizeTheWeight
   {
       static void Main(string[] args)
       {
           List<int> numbers = new List<int>();
           bool isListNotDone = true;
           while(isListNotDone)
          {
              string input = Console.ReadLine();
              int num;

              if(input == "done")
                  isListNotDone = false;
              else
              {
                  num = int.Parse(input);
                  numbers.Add(num);
              }
          }
          foreach(int i in numbers)
          {
              int sum = i+i+i+i;
              Console.WriteLine($"{sum / numbers.Count}");
          }
       }
   }
}

Can anyone please help me to solve it?