write a program to input an integer value from keyboard and display on screen "WELL DONE" that many times

/* write a program to input an integer value from keyboard
and display on screen "WELL DONE" that many times*/

#include
#include
void main()
{
int n,i;
clrscr();
cout<<"Enter a Number:- ";
cin>>n;
cout<<"\n\n\n";
for(i=0;i{
cout<<"\t\tWELL DONE\n";
}
getch();
}