Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
72218 胡海峰老师 ASCII码 Python3 Accepted 31 MS 3804 KB 169 2024-05-04 13:53:33

Tests(1/1):


Code:

n = int(input()) a =[] nums =input().split() while nums: a = a + nums nums = input().split() s ='' for ele in a: s = s + chr( int(ele)) print(s)