#include #include #include using namespace std; int main() { int n; //cin >> n; string s; //cin >> s; ofstream out; out.open ("keyboard.out", ofstream::out | ofstream::app); out << "qwertyuiopasdfghjklzxcvbnm" << endl; out << "14 17" << endl; return 0; }