# input a number s=int(input('Enter an ASCII value: ')) # getting its ascii character n=chr(s) # printing the result print('ASCII of value {} is {}.'.format(s,n))