Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
67160 胡海峰老师 求绝对值 Python3 Accepted 28 MS 3756 KB 131 2024-03-14 19:54:57

Tests(2/2):


Code:

def fun(xx): if xx>=0: return xx # xx>0 xx==0 else: return -xx print( fun( int( input()) ) )