A program for repeating a sentence for 250 times



# include <iostream.h>

# include <string.h>

void main()

{ int x;

cout<<"Could you please say that again?";

for (x = 0; x < 250; x+1)

{

endl;

}
return;
}