Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89656 丁俊杰 15反转数字 Python3 Accepted 44 MS 3752 KB 47 2024-08-28 00:38:32

Tests(10/10):


Code:

n=int(input()) a=str(n)[::-1] print(int(a))