题解列表

筛选

我居然自己写对了,太棒了

摘要:解题思路:注意事项:参考代码:n=input()if int(n[::-1])==int(n):    print('YES')else:    print('NO')……