ASCII Value of a Character
Description
Given a character, print its ASCII value.
Input Format
Output Format
Constraints
Examples
Example 1:
Input:
C = 'A'
Output:
65
Explanation:
The ASCII encoding of the character 'A' is 65.
Given a character, print its ASCII value.
Example 1:
Input:
C = 'A'
Output:
65
Explanation:
The ASCII encoding of the character 'A' is 65.