11 lines
114 B
Python
11 lines
114 B
Python
from random import randrange
|
|
'''
|
|
x - y = 21
|
|
x + 6 = (y + 6) * 5
|
|
|
|
x = 21 + y
|
|
|
|
27 + y = 5y + 30
|
|
4y = -3
|
|
y = -3/4
|
|
''' |