Problem: You will be given a character having ASCII Code between 33 to 127. You need to print the ASCII Code of the character.
Input: A single character.
Output: Print the ASCII Code of the character in decimal form.
Constraints: Character will have ASCII code between 33 and 127.
Sample Input: A
Sample Output:
65
print(ord(input()))