Ирина Владимировна,
Вариант 1 ...
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
b{
color: #FF0000;
}
</style>
</head>
<body>
<script type="text/javascript">
function f() {
var n=+prompt("Введите количество чисел в последовательности:","50");
for (var c = "", d = "", e = 0, g = 0; g < n; g++)
var a = Math.round(9 * Math.random()),
b = Math.round(9 * Math.random()),
c = c + (a == b ? (e++, "<b>" + a + "</b>") : a),
d = d + (a == b ? "<b>" + b + "</b>" : b);
return c+"<br />"+d+"<br />"+e
};
document.write(f())
</script>
</body>
</html>