//#include <iostream>
//#include <iomanip>
#include <cstdio>
#include <cmath>
//using namespace std;
const char s[] = "`1234567890-=QWERTYUIOP[]\ASDFGHJKL;'ZXCVBNM,./";
int main() {
//ios::sync_with_stdio(false);
//FILE *f = fopen("in.txt", "r");
char c;
int i;
while((c = getchar()) != EOF) {
for(i = 1; s[i] && s[i] != c; i++);
if(s[i]) printf("%c", s[i - 1]); else printf("%c", c);
}
//fclose(f);
return 0;
}
UVa 10082 WERTYU
最新推荐文章于 2022-04-24 17:11:11 发布