Cod sursa(job #194681)

Utilizator ProtomanAndrei Purice Protoman Data 12 iunie 2008 23:47:43
Problema Oras Scor 0
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 6=0 then
                writeln(f2,-1);
        close(f1);
        close(f2);
end.