create procedure sp_addno(@no1 int,@no2 int)asbegindeclare @add intset @add=@no1+@no2print @addend
exec sp_addno 5,5
Login to post response