// Finish the following program which // adds up all integers from 0 to // the given number using a FOR loop. #include using namespace std; int main() { int number, total; cout << "Enter a positive integer to find the " << " summation from 0 to the given number." << endl; cin >> number; // write your code here // print the total to the console cout << "Total : " << total << endl; return 0; }