Run ID:87102

提交时间:2024-08-04 02:10:16

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