- 01
 - 02
 - 03
 - 04
 - 05
 - 06
 - 07
 - 08
 - 09
 - 10
 - 11
 - 12
 - 13
 - 14
 - 15
 - 16
 - 17
 - 18
 - 19
 - 20
 - 21
 - 22
 - 23
 - 24
 - 25
 - 26
 - 27
 - 28
 - 29
 - 30
 - 31
 - 32
 - 33
 - 34
 - 35
 - 36
 - 37
 - 38
 - 39
 - 40
 - 41
 - 42
 - 43
 - 44
 - 45
 - 46
 - 47
 - 48
 - 49
 - 50
 - 51
 - 52
 - 53
 - 54
 - 55
 - 56
 - 57
 - 58
 - 59
 - 60
 - 61
 - 62
 - 63
 - 64
 - 65
 - 66
 - 67
 - 68
 - 69
 - 70
 - 71
 - 72
 - 73
 - 74
 - 75
 - 76
 - 77
 - 78
 - 79
 - 80
 - 81
 - 82
 - 83
 - 84
 - 85
 - 86
 - 87
 - 88
 - 89
 - 90
 - 91
 - 92
 - 93
 - 94
 
                        program pr8;
uses crt;
var
a:array [1..32] of char;
b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r:integer;
a1,b1,c1,d1,e1,f1,g1,h1,i1,j1,k1,l1,m1,n1,o1,p1: integer;
begin
a[1]:=' ';
a[2]:='Ў';
a[3]:='ў';
a[4]:='Ј';
a[5]:='¤';
a[6]:='Ґ';
a[7]:='¦';
a[8]:='§';
a[9]:='Ё';
a[10]:='©';
a[11]:='Є';
a[12]:='«';
a[13]:='¬';
a[14]:='';
a[15]:='®';
a[16]:='Ї';
a[17]:='а';
a[18]:='б';
a[19]:='в';
a[20]:='г';
a[21]:='д';
a[22]:='е';
a[23]:='ж';
a[24]:='з';
a[25]:='и';
a[26]:='й';
a[27]:='к';
a[28]:='л';
a[29]:='м';
a[30]:='н';
a[31]:='о';
a[32]:='п';
b:=21;
c:=24;
d:=6;
e:=13;
f:=15;
g:=19;
h:=18;
i:=20;
j:=10;
k:=21;
l:=10;
m:=10;
n:=14;
o:=9;
p:=10;
q:=18;
for r:=1 to 32 do
begin
a1:=b+r;
if a1>32 then a1:=a1-32;
b1:=c+r;
if b1>32 then b1:=b1-32;
c1:=d+r;
if c1>32 then c1:=c1-32;
d1:=e+r;
if d1>32 then d1:=d1-32;
e1:=f+r;
if e1>32 then e1:=e1-32;
f1:=g+r;
if f1>32 then f1:=f1-32;
g1:=h+r;
if g1>32 then g1:=g1-32;
h1:=i+r;
if h1>32 then h1:=h1-32;
i1:=j+r;
if i1>32 then i1:=i1-32;
j1:=k+r;
if j1>32 then j1:=j1-32;
k1:=l+r;
if k1>32 then k1:=k1-32;
l1:=n+r;
if l1>32 then l1:=l1-32;
m1:=m+r;
if m1>32 then m1:=m1-32;
n1:=o+r;
if n1>32 then n1:=n1-32;
o1:=p+r;
if o1>32 then o1:=o1-32;
p1:=q+r;
if p1>32 then p1:=p1-32;
writeln(a[a1],a[b1],a[c1],a[d1],a[e1],a[f1],a[g1],'  ',a[h1],a[i1],a[j1],a[k1],a[l1],a[m1],a[n1],a[o1],a[p1]);
end;
readln;
CLRSCR
end.
                                     
        
            Парниша пытался написать шифр Цезаря... :)