I am having a User table in which some records are available.

I want to select Id3 with this condition id<5 and insert 4 new rows in the User table with Id2=10000 a constant value
For example: consider row 1 which is having id=1,id2=200, and Id3=300, I want to insert a new record where Id2=10000 and Id3=300
Is there any way to avoid writing 4 insert statements manually. Please suggest to me.