Cod sursa(job #194767)

Utilizator ProtomanAndrei Purice Protoman Data 13 iunie 2008 21:07:47
Problema Oras Scor 5
Compilator fpc Status done
Runda Arhiva de probleme Marime 0.27 kb
var f1,f2:text;
    n:longint;
begin
        assign(f1,'oras.in');
        reset(f1);
        assign(f2,'oras.out');
        rewrite(f2);
        read(f1,n);
        if n mod 2=0 then
                writeln(f2,-1);
        close(f1);
        close(f2);
end.