begin
write('enter in the first number and second numbers ');
read(a);
read(b);
increment(a,b);
writeln;write(' a is now ',a);writeln;
write('b is now ',b);
write('enter in the third and fourth numbers ');
read(c);
read(d);
increment(c,d);
writeln;write (' c is now ',c);writeln;
write(' d is now d ',d);writeln;
end.