Input
Output
#include <iostream> using namespace std; int main(){ int i=1; while(i<=5){ cout << "Print the number " << i << endl; i++; } return 0; }