PROGRAMMING:Output character - single branch
Enter a character. If it is lowercase, convert it to uppercase. The rest of the characters remain unchanged.
###Input format and sample 1:
Enter a lowercase letter, for example:
```in
a
```
###Output format and sample 1:
Output the uppercase form of the letter, for example:
```out
A
```
###Input format and sample 2:
Enter a capital letter, for example:
```in
A
```
###Output format and sample 2:
Output the letter directly, for example:
```out
A
```
###Input format and sample 3:
Enter a numeric character, for example:
```in
five
```
###Output format and sample 3:
Output the numeric character directly, for example:
```out
five
```
answer:If there is no answer, please comment
###Input format and sample 1:
Enter a lowercase letter, for example:
```in
a
```
###Output format and sample 1:
Output the uppercase form of the letter, for example:
```out
A
```
###Input format and sample 2:
Enter a capital letter, for example:
```in
A
```
###Output format and sample 2:
Output the letter directly, for example:
```out
A
```
###Input format and sample 3:
Enter a numeric character, for example:
```in
five
```
###Output format and sample 3:
Output the numeric character directly, for example:
```out
five
```
answer:If there is no answer, please comment