You are looking for the INSERT statement.
CREATE PROCEDURE InsertTerritory ( @territoryId int ,@territoryDescription nvarchar(200) ,@regionId int)ASBEGIN INSERT INTO Territories (Id, [Description], RegionId) VALUES (@territoryId, @territoryDescription, @regionId)ENDGO