We can go with the below query.
INSERT INTO Employees (Name, Position)
OUTPUT INSERTED.EmpID AS InsertedID
VALUES ('Saloni', 'WebDeveloper');
In the above query, we are using OUTPUT clause to get the inserted ID of the new row by INSERTED.EmpID statement.