This solution comes from Andrei from School No. 205, Bucharest, Romania.

To solve this problem I followed the following steps:

- associating to the letters of the alphabet numbers between 0 and 25, I transformed the coded message into a set of pairs of numbers (a¢,b¢)

- I solved the system of equations for (a,b) in terms of (a¢,b¢).

- I used the same association as in the first step, and I transformed the set of numbers (a, b) into letters, and I found the message.

The association is:
  abcdefghijklmnopqrstuvwxyz
  012345678910111213141516171819202122232425

For each pair of numbers (a¢, b¢) I have to solve the system to determine (a, b)
a¢
= a+ 3b   mod 26    (1)
b¢
= 5b     mod 26    (2)

I start from the last equation:
b = 1
5
b¢   mod 26
To determine 1/5 (mod 26), I first constructed the table of multiplication for 5 (mod 26) to see where I obtain 1. As 21 multiplied by 5 gives 1 (mod 26) it follows that 1/5 (mod 26) is 21. This means:
b = 21b¢   mod 26    (3)
and for a I obtained successively
a = a¢-3b = a¢-3×21b¢ = a¢- 11b¢   mod 26
that is
a = a¢+15b¢    mod 26     (4).
Now, the sequence of numbers (a¢, b¢) is transformed by equations (3) and (4) into the sequence (a,b)
 C a¢ b¢ a b P
 dj 3 9 8 7 ih
 lb 11 1 0 21 av
 rn 17 13 4 13 en
 qm 16 12 14 18 os
 bu 1 20 15 4 pe
 ao 0 14 2 8 ci
 hd 7 3 0 11 al
 eo 4 14 6 8 gi
 kr 10 17 5 19 ft
 ia 8 0 8 0 ia
 cs 2 18 12 14 mo
 ud 20 3 13 11 nl
 rx 17 23 24 15 yp
 cm 2 12 0 18 as
 qo 16 14 18 8 si
 bn 1 13 14 13 on
 fr 5 17 0 19 at
 ld 11 3 4 11 el
 ek 4 10 24 2 yc
 th 19 7 20 17 ur
 ys 24 18 8 14 io
 wm 22 12 20 18 us
The message could be read as the quotation from Enstein talking about himself as a mathematician: 'I have no special gift. I am only passionately curious'.