anyone help me please I need to convert this C++ to assembly
int number = 0;
int targetValue = 1;
int nbrTerms = 0;
cout<< "enter number"
cin >> targetValue;
while( nbrTerms <= targetValue)
{
nbrTerms = nbrTerms + ( targetValue * targetValue)
targetValue ++;
}
cout<< "total terms: "nbrTerms;
return 0;