#include <bits/stdc++.h> using namespace std; string num[10] = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"}; int stringToInt(string s) { for (int i = 0...