Cod sursa(job #1237578)

Utilizator ThorophRadu Alexandru Thoroph Data 4 octombrie 2014 12:41:55
Problema A+B Scor 100
Compilator fpc Status done
Runda Arhiva de probleme Marime 0.2 kb
var
  a, b: longint;
  f: text;

begin
	assign(f, 'adunare.in');
	reset(f);
	readln(f, a);
	readln(f, b);
	close(f);
	assign(f, 'adunare.out');
	rewrite(f);
	writeln(f, a+b);
	close(f);
end.