string reverse(string str) { string output; for(int i=str.length()-1; i<str.length(); i--) { output += str[i]; } return output; }