#include <iostream>
#include <string>
usingnamespace std;
string operator *( unsignedint n, string s ) { return n ? ( n - 1 ) * s + s : ""; }
int main()
{
cout << 3 * string( "This will be printed repeatedly!\n" );
}
#include <iostream>
#include <string>
usingnamespace std;
#define TIMES( n ) for ( int i = 1; i <= ( n ); i++ )
int main()
{
TIMES( 3 ) cout << "This will be printed repeatedly!\n";
}