Run ID:67160
提交时间:2024-03-14 19:54:57
def fun(xx): if xx>=0: return xx # xx>0 xx==0 else: return -xx print( fun( int( input()) ) )