var a,b,c:integer;
Begin
read(a,b,c);
if a>=0 then writeln(a);
if b>=0 then writeln(b);
if c>=0 then writeln(c);
End.
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
var a,b,c:integer;
Begin
read(a,b,c);
if a>=0 then writeln(a);
if b>=0 then writeln(b);
if c>=0 then writeln(c);
End.