key = 10
function decode(text)
	array = ""
	for i = 1, #text do
		array = array..string.char((text:sub(i, i):byte())-key)
	end
	return array
end
 
file = io.open('main.code', 'r')
t = file:read("*all")
load(decode(t))()