fork download
  1. program bilanganbulatpositifgenap;
  2. var
  3. n:longint;
  4. begin
  5. readln(n);
  6. if n>0 then begin
  7. if n mod 2=0 then begin
  8. writeln(n);
  9. end;
  10. end;
  11. end.
Success #stdin #stdout 0s 328KB
stdin
Standard input is empty
stdout
Standard output is empty