mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 16:43:08 +02:00
10 lines
193 B
C
Executable File
10 lines
193 B
C
Executable File
#include <stdio.h>
|
|
|
|
const int NUMBER_FOR_POLISH_SMALL_L = 136;
|
|
|
|
int main()
|
|
{
|
|
for(char i = 'a'; i < 'z' + 1; ++i) printf("%ca%cka\n", i, NUMBER_FOR_POLISH_SMALL_L);
|
|
return 0;
|
|
}
|