Help
#include <iostream> using namespace std; int main(){ int a, b, c, d, e; float rata, jum; cout << "Input value a : "; cin >> a; cout << "Hasil : " << a * a + a <<endl; cout << "Input value b : "; cin >> b; cout << "Hasil : " << b * b + b <<endl; cout << "Input value c : "; cin >> c; cout << "Hasil : " << c * c + c <<endl; cout << "Input value d :"; cin >> d; cout << "Hasil : " << d * d + d <<endl; cout << "Input value e : "; cin >> e; cout << "Hasil : " << e * e + e <<endl; return 0; } My question is : I have five values. but I am confused about the next step to calculate the total number of the five values ââand calculate the average of the five values