I am trying to combine two angularjs expression
<div ng-app=""> <p>Name : <input type="text" ng-model="name"></p> <h1>Hello {{name}}</h1> </div><div ng-app=""> <p>My first expression: {{ 5 + 5 }}</p> </div>
by doing this :
<div ng-app="ctrl">
<p>Enter first numb:<input type="text" ng-model="firstnb"/></p>
<p>Enter sec numb:<input type="text" ng-model="secnb"/></p>
<p>Enter operator:<input type="text" ng-model="op"/></p>
<p> Result is : {{firstnb}} {{op}} {{secnb}} = </p>
</div>
but before even calculating the result i am getting this on my browser :

I am a nooby in angular and i have no idea why i am getting the result
note that : <script src="js/angular.min.js"></script> is loaded perfectly
ng-app=" "