PROGRAMMING:Ignore spaces when reading in characters
###Task description
Input two characters and output their corresponding ASCII codes.
###Input format:
Two characters, both of which may be preceded by a number of white space characters (spaces or carriage returns).
###Output format:
A line containing two integers separated by a space.
###Input sample 1:
```in
twelve
```
###Output sample 1:
```out
49 50
```
###Input sample 2:
```in
A
B
```
###Output sample 2:
```out
65 66
```
answer:If there is no answer, please comment
Input two characters and output their corresponding ASCII codes.
###Input format:
Two characters, both of which may be preceded by a number of white space characters (spaces or carriage returns).
###Output format:
A line containing two integers separated by a space.
###Input sample 1:
```in
twelve
```
###Output sample 1:
```out
49 50
```
###Input sample 2:
```in
A
B
```
###Output sample 2:
```out
65 66
```
answer:If there is no answer, please comment