I have leart C programming in pass and then i stop once i pass my exam and of course you know what happends next you forget it !

i am trying to learn C++ and therefore bought this book C++ for Dummies

i am getting some erros with this code line 37 it says string not termiated now i have try alsort of things but no good.

/ This is a PA from what i have learnt chap01 to chap 04
//this program will do addition , times, sharing , subtractions.
#include <stdio.h>
#include <iostream.h>


int main()

{

int num1,num02,total;
float num1f,num2f,totalf;


cout <<"*************************************"<"\n";
cout <<"** Dynex Basic Maths Program **"<"\n";
cout <<"*************************************"<"\n";
cout <<" ************* "<\n";
cout <<" **** "<"\n";
cout <<" ** "<"\n";


cout <<"\n";
cout <<"Enter the first digit:"<<"\n";
cin >> num1;
cout <<"\n";
cout <<"Now enter the second digit:"<<"\n";
cin >> num2;
cout <<"\n";

total = num1 + num2;
cout <<" Your total sum is:"
cout << total;

cout <<"\n";
cout <<"*********************************"<< "\n";
cout <<" Programs ends "<< "\n";
// this is were the error happens ? cout <<"*********************************"<< "\n";

return 0;






}


please help me