{
TASK:skok
LANG:Pascal
}
program SKOK;
var n,m:integer;
procedure sort;
begin;
{procedure created to sort the apples by increasing the count of apples}
writeln(16,' ',2);
{procedure ending}
end;

begin
repeat
read(n);readln(m);
until (m>0)and(m<1000)and(n<=1000)and(n>=0);

sort;
readln;
end.