# Program to find the ASCII value of a character
ch = input("Enter any character: ")
print("The ASCII value of char " + ch + " is: ",ord(ch))
# Program to find the ASCII value of the given character
c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))
N = int(input())
if 97 <= N <= 122:
print(chr(N))