What's the ASCII? @ Dcoder

Words
53
Reading
1 min
Listen
Play
3y

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
Link

print(ord(input()))