can anyone explain why the output of this code is 110 ?
// Assignment 1-Body Mass Index Calculator
#include <iostream> //allows program to output data to the screen
using namespace std;
//function main begins program execution
int main()
{
int total=0;
for (int number =2;number<=20;number+=2)
total +=number;
cout<<"Sum Is"<<total<<endl;
return 0 ;
}