I have decided to support Pascal language in my online judge.
I wrote a simple program in Pascal. I haven't used Pascal for 6 years, but -
program main;
var
a, b : integer;
begin
while not eof do begin
readln( a, b );
writeln( a + b );
end;
end.
Surprisingly, I could still write a Pascal source code! ;ㅁ; I honor my long term memories.