Look at the following code.Type in something between the brackets so that the compiled code would print Hello 5 times
#include <iostream>
using namespace std;
int main() {
   for ()
     cout << "Hello ";
};