String putS(int n, [bool capital = false]) { if (n > 1) { return capital ? 'S' : 's'; } else { return ''; } }