<div id="container"></div>
let select = document.createElement('select');
for (let i = 1920; i <= 2010; i++) {
let option = document.createElement('option');
option.value = i;
option.innerText = i;
select.appendChild(option);
}
document.getElementById('container').appendChild(select);
var first = parseInt(prompt('Введите первое число'), 10);
var second = parseInt(prompt('Введите второе число'), 10);