# Ces programmes sont sous licence CeCILL-B V1.

from random import *
from math import *

for i in range(0,1000):
  print(chr(floor(random() * 26) + 97),end = "")
print()
