Run ID:136532

提交时间:2025-11-15 13:26:54

a,b,c=input().split() if a>b: a,b=b,a elif b>c: b,c=c,b elif a>c: a,c=c,a print(c)