module sn7483 (A, B, C0, SUM, C4) ;
// 4-bit adder SN74LS83
input [4:1] A ;
input [4:1] B ;
input C0 ;
output [4:1] SUM ;
output C4 ;
// add your declarations here
wire	[4:0] temp;
// add your code here
assign 	temp = A+B+C0;
assign	SUM = temp[3:0];
assign 	C4 = temp[4];
endmodule