<input type="number" value="0">Минут <br> <span></span> Часов <script> document.querySelector('input').oninput=function(){ document.querySelector('span').textContent = (this.value/60).toFixed(2); }; </script>