#coding:utf-8 rfile = open('test.txt','r')
str=[]
for x in rfile:
str = x.split(',')
for x in str:
print (chr(int(x)),end='')
rfile.close()
#coding:utf-8 rfile = open('test.txt','r')
str=[]
for x in rfile:
str = x.split(',')
for x in str:
print (chr(int(x)),end='')
rfile.close()