<!DOCTYPE html>
<html lang="en">
<head>
<style>
input{
width: 30px;
}
</style>
</head>
<body>
<input type="text" value="0"><input type="text" data-val="10" value="10">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$('input').keyup(function(){
$('input').eq(1).val($('input').eq(0).val()*1+$('input').eq(1).attr('data-val')*1);
});
</script>
</body>
</html>