time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
Our good friend Mole is trying to code a big message. He is typing on an unusual keyboard with characters arranged in following way:

qwertyuiop
asdfghjkl;
zxcvbnm,./
Unfortunately Mole is blind, so sometimes it is problem for him to put his hands accurately. He accidentally moved both his hands with one position to the left or to the right. That means that now he presses not a button he wants, but one neighboring button (left or right, as specified in input).

We have a sequence of characters he has typed and we want to find the original message.

Input
First line of the input contains one letter describing direction of shifting (‘L’ or ‘R’ respectively for left or right).

Second line contains a sequence of characters written by Mole. The size of this sequence will be no more than 100. Sequence contains only symbols that appear on Mole’s keyboard. It doesn’t contain spaces as there is no space on Mole’s keyboard.

It is guaranteed that even though Mole hands are moved, he is still pressing buttons on keyboard and not hitting outside it.

Output
Print a line that contains the original message.

Examples
inputCopy
R
s;;upimrrfod;pbr
outputCopy
allyouneedislove

///***Created by Xiang wang *** ACMÈÙҫ֮·***
//#include <bits/stdc++.h>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<queue>
#include<cmath>
#include<cctype>
#include<stack>
#include<map>
#include<string>
#include<cstdlib>
#define ll long long
const int INF = 0x3f3f3f3f;
const long long LIMIT = 4294967295LL;
const int maxn = 100 + 10;
using namespace std;
char a[3][100]={"qwertyuiop",
"asdfghjkl;",
"zxcvbnm,./"};
int main()
{
char n;
char b[110];
int i,ii,j;
while(cin>>n)
{
cin>>b;
bool flag=0;
for(i=0;i<strlen(b);i++)
{
for(ii=0;ii<3;ii++)
{for(j=0;j<10;j++)
if(b[i]==a[ii][j])
{
if(n=='R')
cout<<a[ii][j-1];
else
cout<<a[ii][j+1];
flag=1;
break;}
if(flag)
{flag=0;
break;}
}
}
printf("\n");
}
return 0;
}