var a,b,c: integer;
begin
readln(a,b,c);
if (a>=-5)and(a<=10) then write(a,' ');
if (b>=-5)and(b<=10) then write(b,' ');
if (c>=-5)and(c<=10) then write(c,' ');
end.
var a,b,c: integer;
begin
readln(a,b,c);
if (a>=-5)and(a<=10) then write(a,' ');
if (b>=-5)and(b<=10) then write(b,' ');
if (c>=-5)and(c<=10) then write(c,' ');
end.