#!/usr/bin/php
<?php

$abc = "abcdefghijklmnopqrstuvwxyz";

for ($i=0; $i<393; $i++) {
	echo $abc[rand(0,25)];
}
echo "\n";

