#include int main() { int number_of_pods, peas_per_pod, total_peas; cout << "Press return after entering a number." << endl; cout << "Enter the number of pods:"<< endl; cin >> number_of_pods; cout << "Enter the number of peas in a pod:" << endl; cin >> peas_per_pod; total_peas = number_of_pods * peas_per_pod; cout << "If you have " << number_of_pods << " pea pods "; cout << "and " << peas_per_pod << " peas in each pod, then "; cout << "you have " << total_peas << " peas in all the pods." << endl; return 0; }