Run ID:141265
提交时间:2025-12-21 17:10:48
a,b,c=input().split() a,b,c=int(a),int(b),int(c) if a>b and a>c: print(a) elif b>a and b>c: print(b) else: print(c)