def about_me(): n = [73, 32, 100, 111, 110, 39, \ 116, 32, 107, 110, 111, 119, \ 32, 119, 104, 97, 116, 32, \ 116, 111, 32, 112, 117, 116, \ 32, 104, 101, 114, 101, 46] l = [chr(i) for i in n] return ''.join(l) print(about_me())