Please help me with the task: Calculate your salary

Hello, I’m working on this task:

Create 4 int variables with different names. Assign them these values: 1000, 2000, 3000, 10000. Using string interpolation, insert those int variables into the strings to get such output:
In one year my salary is going to be 1000 USD
In two years my salary is going to be 2000 USD
In three years my salary is going to be 3000 USD
In four years my salary is going to be 10000 USD

Here is my code:


public static class CalculateYourSalary
{
   public static void Main()
   {
       int myInt = 1000;
       int myInt = 2000;
       int myInt = 3000;
       int myInt - 10000;

       Console.WriteLine($"In one year my salary is going to be 1000 USD");
       Console.WriteLine($"In two years my salary is going to be 2000 USD");
       Console.WriteLine($"In three years my salary is going to be 3000 USD");
       Console.WriteLine($"In four years my salary is going to be 10000 USD");
   }
}

Can anyone please help me to solve it?