var app = angular.module('plunker', []);

app.controller('Parent', function() {
  this.name = 'Simple Object';
});

app.controller('Child', function() {
  
});
<!DOCTYPE html>
<html ng-app="plunker">

  <head>
    <meta charset="utf-8" />
    <title>AngularJS Plunker</title>
    <script>document.write('<base href="' + document.location + '" />');</script>
    <link rel="stylesheet" href="style.css" />
    <script data-require="angular.js@1.4.x" src="https://code.angularjs.org/1.4.3/angular.js" data-semver="1.4.3"></script>
    <script src="app.js"></script>
  </head>

  <body>
    <div ng-controller="Parent as parent">
      parent : <input type="text" ng-model="parent.name">
      
      <div ng-controller="Child as child">
        child : <input type="text" ng-model="parent.name">
      </div>
    </div>
  </body>

</html>
/* Put your css in here */