function rand10(): number { let quot = Infinity while(quot > 40) { const first = rand7() const second = rand7() quot = 7 * (first - 1) + second } return (quot - 1) % 10 + 1 };