Run ID:67159

提交时间:2024-03-14 19:50:23

def abs(n): if n<0: n=n*-1 return n m=int(input()) print(abs(m))