#include #include using namespace std; int main() { char qwertyy[] = "qwertyuiopasdfghjklzxcvbnm"; ifstream inp; inp.open("keyboard.in"); char *N= new char[200]; inp >> N; inp.close(); ofstream out; out.open("keyboard.out"); swap(qwertyy[0], qwertyy[5]); swap(qwertyy[1], qwertyy[10]); swap(qwertyy[14], qwertyy[25]); out << qwertyy << endl; out << 1 << " " << 9 << endl; out.close(); return 0; }