用户输入用逗号分隔的多个数字,输出其中数值最小的一个的绝对值
a = input().split(",") a = list(map(lambda x: eval(x),a)) print(abs(min(a)))