`1)`
Uses crt, math ;
var a, b, c : longint ;
// Ct con ten max_int
function max_int(a,b,c : longint) : longint ;
begin
max_int := max((max(a,b)),c)
end ;
begin
clrscr;
read(a,b,c);
write(max_int(a,b,c));
end .
`2)`
const fi='input.txt' ;
fo='output.txt';
var a, b : longint ;
begin
assign(input, fi) ; reset(input);
assign(output, fo) ; rewrite(output);
read(input, a, b);
write(output, a+b);
close(input) ; close(output);
end .