Edit the givenprogram to produce the following output in c++ mode:
- Take in the name of a superhero & tell him how many villainshe/she has to defeat today - The number of villains is randomlygenerated and should be a number between 11 and 42.
- Use a seed of 7.
Hint: Compile the program first before making edits
What is your name?Hello Captain AmericaThere are 42 villains you need to defeat todayOops! one of the villains was able to multiply himself by a power of 3.There are actually 74088 villains.
the program starts her
#include                                 //make sure that all necessary libraries are included &correct
using namespace std;
int main() {
string name;
int number;
 Â
  cout << \"What is your name?\" <  cin >> name;
  cout << \"Hello \" << name <  cout << \"There are \"<< number >> \"villains you need to defeat today\"<  cout << \"Oops! one of the villains was able tomultiply himself by a power of 3. There are actually villains.\"<< endl;
 Â
 Â
 Â
  return 0;
}