AngularJS Example:

HTML

<form ng-app>
    <fieldset>
        <label for = "first">First number</label>
        <input type="number" id="first" min="0" ng-model="first" placeholder = "0..."/>
        <label for = "second">Second number</label>
        <input type="number" id="second" min="0" ng-model="second" placeholder = "0..."/>
        <footer><h1>Sum: {{first + second}}</h1></footer>        
    </fieldset>
</form>

CSS

</style> <!-- Ugly Hack due to jsFiddle issue: http://goo.gl/BUfGZ --> <link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css"> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js"></script> <style>