← 返回 doordash 的题目列表San Er Jiu
类型:online_judge
Write a Python program to solve a custom algorithm problem by accepting input and outputting the result. Design your logic and test cases. The input is a string, and the output is the processed result string.
Input
A string s.
Output
A string that results from the custom logic processing.
Example
Input: "abc"
Output: "cba"
Constraints
String length 1 to 1000
Hints
Customize reversal logic or other string processing methods
Example
Input
"abc"