def backward_string(val: str) -> str: return val[::-1]
Why doesn't "return print(val[::-1])" work?
17
11
1