def stringToInt(string in) int { result = 0 ground { stoi $in &result } return result } def intToString(int in) string { result = "" ground { tostring $in &result } return result }