Please help me with the task: "Launch the self-destruction "

Hello, I’m working on this task:

Write a program that creates an int variable codePart with the value 333. Then create another int variable with name code and assign a value that is twice the codePart variable value. Your program should output:
Self-destruction started. The code is
666

Here is my code:


public class LaunchSelfDestruction 
{
   public static void Main(string[] args)
   {
       // Write your code under this line
      int codePart = 333; 
     int  code = codePart * 2;
       Console.WriteLine("Self-destruction started. The code is codePart");
       Console.WriteLine(code);
   }
}

Can anyone please help me to solve it?