Hide

Problem G
Esej

The impending doom called final examination is approaching this year’s high school seniors: one of the compulsory tasks is going to be writing an essay in their mother tongue. Mirko is under the impression that certain political parties are going to keep their promises, those regarding informatization and digitalization, which is why he thinks that this year’s essays are going to be marked by a computer, instead of a human.

To test his doubts, Mirko is going to write an essay that doesn’t necessarily make sense at all, but should pass the automatic basic conditions check. The essay passes the check if

  • it contains at least $A$, and at most $B$ words;

  • every word contains at least one, and at most 15 letters;

  • the used vocabulary is large enough, in other words, the essay contains at least $B/2$ different words.

Mirko was up late last night watching Big Brother, so he is asking you to write such an essay instead of him. The essay should be output in a single line, using only lowercase letters of the English alphabet and spaces (therefore, without punctuation such as dots, commas and such). The words used can, but need not be, words from the English (or any) language.

Input

The first and only line of input contains the integers $A$ and $B$ ($1 \leq A \leq B \leq 100\, 000$) from the task.

Output

The first and only line of output must contain any essay that meets the rules from the task.

Sample Input 1 Sample Output 1
2 7
dobar je ovaj marko marulic
Sample Input 2 Sample Output 2
26 30
nama je profesor reko da to ne treba za lektiru al onda je bila buka i nisam ga cuo pa jel bi mi mogli dat bodove
Sample Input 3 Sample Output 3
19 19
konzekvence pojmovnoga diskursa u predstavljenoj noveli naizgled ne odrazavaju paradigmatske tendencije tipoloske klasifikacije iako su stilski i didakticki opravdane

Please log in to submit a solution to this problem

Log in