#include using namespace std; int main()//start main function { // decleraton and intilaization int Number, int TotalNumbers=0;int sum=0; int i=1; //promet the user to enter the total numbers to add cout<<"Enter how many number you want to sun them"<> TotalNumbers; while( i<=TotalNumbers)//start while loop { cout<<"Enter the number:";//promet the user to enter the number cin>>Number;//read the number //here In case the number entered is negative or 0 the program displays an error message if (Number<=0) { cout<<"Error, Please Enter a positive Number"<