function num = lotto(tips)
	for i = 1:tips
		tmp = randperm(49);
		num = tmp (1:6);
		sort(num)
	end
end