#include "iostream" #include "string" #include "map" using namespace std; // 1 || 2 abc || 3 def // 4 ghi || 5 jkl || 6 mno // 7 pqrs || 8 tuv || 9 wxyz int main() { map<char,int> keyGroup = { {'a',2},{'b',2},{'c',2}, {'d',3},{'e',3},{'f',3}, {'g...