#include using namespace std; int main() { char qwerty[] = "qwertyuiopasdfghjklzxcvbnm"; int N; ifstream inp; inp.open("keyboard.in"); inp >> N; char* test = new char[N]; inp >> test; inp.close(); ofstream out; out.open("keyboard.out"); out << qwerty << endl; out << 14 << " " << 17 << endl; out.close(); return 0; }