Run ID:87104

提交时间:2024-08-04 02:11:28

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