lfmissonb @ 2023-09-28 16:51:44
1.
print(input()[::-1])
2.
a = input() for i in range(len(a)): print(a[-i-1], end="")
为什么python结果WA,用C++就没问题