#include #include using namespace std; int main() { int L; ifstream inp; inp.open("keyboard.in"); inp >> L; char* k = new char[L]; inp >> k; inp.close(); ofstream out; out.open("keyboard.out"); char original[] = "qwertyuiopasdfghjkl"; out << original << endl; out << 11 << " " << 17 << endl; out.close(); return 0; }