Cod sursa(job #194679)

Utilizator ProtomanAndrei Purice Protoman Data 12 iunie 2008 23:47:10
Problema Oras Scor 0
Compilator fpc Status done
Runda Arhiva de probleme Marime 0.26 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=6 then
                writeln(f2,-1);
        close(f1);
        close(f2);
end.