n = input() print(ord(n))
ord : 문자의 아스키 코드값을 리턴 (문자를 숫자로!) chr : 아스키 코드값 입력으로 받아 그 코드에 해당하는 문자를 출력 (숫자를 문자로!)