const inputtel = document.querySelector('input[type=tel]');
const button = document.querySelectorAll('input[type=button]')
for( let c = 0; c < button.length;c++){
button[c].onclick = function () {
inputtel.value = inputtel.value + button[c] .value
}
}