AYOABTU
1.12.12 25.15.21.18 15 1.18.5 2.5.12.15.14.7 20.15 21.19
class DeCrypt { static function main() { var crypt = "1.12.12 25.15.21.18 15 1.18.5 2.5.12.15.14.7 20.15 21.19"; var s = ""; for( word in crypt.split(" ") ) { for( code in word.split(".") ) { s += String.fromCharCode(Std.parseInt(code) + "A".code - 1); } s += " "; } trace(s); } }