plduhoux
2/20/2018 - 1:42 AM

digitCharactersSum

String digitCharactersSum(char ch1, char ch2) {
    return "" + (ch1 - 48 + ch2 - 48);
}