Run ID:136531
提交时间:2025-11-15 13:26:06
a,b,c=input().split() for x in range(len(a)): if a>b: a,b=b,a elif b>c: b,c=c,b elif a>c: a,c=c,a print(c)