Use Proper Angularjs Version Library .You need to Go through Angularjs Doucmentation and Try to Understand by experimenting . That Makes you Strong 
Some Beginner Mistakes :-
You Should write all the code after assigning Controller to Html
  Element . Otherwise Your Code Don't Work even if it is Correct . You need
  to assign a variable to Use.
html Code sample (understand Your mistake by taking look at code or the Below Plunkers :-) :-
<body ng-controller = "sampleController">
  <input ng-model="sample.node"  type="text" />
      <p>input "{{sample.node}}"</p>
      <input ng-model="sample1"  type="text" />
      <p>input "{{sample1}}"</p>
</body>
Controller Coding :-
angular.module("sampleApp", [])  
           .controller("sampleController", ['$scope', function($scope) {
               $scope.sample = {'node':1};
               $scope.sample1 = 'my first default value';
             }]);
Here we go Simple Binding Example :-
http://jsfiddle.net/cmckeachie/Y8Jg6/
Plunker With Little More Concept of Data binding :-
    https://plnkr.co/edit/TmAsSCKQDHfXYEbCGiHW?p=preview
Go through Documentation for some more understanding Good Luck !!