-->
当前位置:首页 > 题库

PROGRAMMING:Ignore spaces when reading in characters

Luz5年前 (2021-05-10)题库409
###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