1<?php
2
3if ( PHP_SAPI !== 'cli' ) {
4	exit( 1 );
5}
6
7echo str_repeat( '*', 333333 );
8