提交时间:2025-05-14 18:34:11

运行 ID: 322173

def s(x): if x<1: print(x) elif x<10: print(2*x-1) else: print(3*x-11) x=int(input()) s(x)