program vreme;
var
i,m,r:integer;
begin
i:=3; 
for m:=3 to 7 do begin
r:=i*m;
writeln(r);
end;
end.