PROGRAMMING:String replacement
This problem requires the program to replace the uppercase English letters in the given string according to the following corresponding rules:
|Original letter | corresponding letter|
|:-----: |:--------:|
| A | Z |
| B | Y |
| C | X |
| D | W |
|… |… |
| X | C |
| Y | B |
| Z | A |
###Input format:
Enter a string that gives no more than 80 characters on a line and ends with a carriage return.
###Output format:
The output gives the string after replacement in one line.
###Input example:
```in
Only the 11 CAPItaL LeTtERS are replaced.
```
###Output example:
```out
Lnly the 11 XZKRtaO OeGtVIH are replaced.
```
answer:If there is no answer, please comment
|Original letter | corresponding letter|
|:-----: |:--------:|
| A | Z |
| B | Y |
| C | X |
| D | W |
|… |… |
| X | C |
| Y | B |
| Z | A |
###Input format:
Enter a string that gives no more than 80 characters on a line and ends with a carriage return.
###Output format:
The output gives the string after replacement in one line.
###Input example:
```in
Only the 11 CAPItaL LeTtERS are replaced.
```
###Output example:
```out
Lnly the 11 XZKRtaO OeGtVIH are replaced.
```
answer:If there is no answer, please comment