PROGRAMMING:Ring decryption*
Arrange 26 English letters in a circle clockwise. The key is an integer.

The known encryption methods are as follows:
-If the key is $$key / GEQ 0 $$, the ciphertext letter is obtained by taking steps of $$| key $$clockwise from the plaintext letter;
-If the key is $$key / LT 0 $$, the ciphertext letter will be obtained by going in a counter clockwise direction from the plaintext letter.
Please write decryption program, input ciphertext (lowercase letters) and key (any integer), output plaintext (lowercase letters).
####Input format
>Ciphertext (lowercase) key (any integer)
####Output format
>Plaintext (small letters)
####Input sample 1
```in
c 5
```
####Output sample 1
```out
x
```
####Input sample 2
```in
y -3
```
####Output sample 2
```out
b
```
answer:If there is no answer, please comment

The known encryption methods are as follows:
-If the key is $$key / GEQ 0 $$, the ciphertext letter is obtained by taking steps of $$| key $$clockwise from the plaintext letter;
-If the key is $$key / LT 0 $$, the ciphertext letter will be obtained by going in a counter clockwise direction from the plaintext letter.
Please write decryption program, input ciphertext (lowercase letters) and key (any integer), output plaintext (lowercase letters).
####Input format
>Ciphertext (lowercase) key (any integer)
####Output format
>Plaintext (small letters)
####Input sample 1
```in
c 5
```
####Output sample 1
```out
x
```
####Input sample 2
```in
y -3
```
####Output sample 2
```out
b
```
answer:If there is no answer, please comment