Run ID:141261
提交时间:2025-12-21 16:54:31
a,b,c=input().split() a=int(a) b=int(b) c=int(c) if a>b: if a>c: print("max={}".format(a)) else: print("max={}".format(c)) else: if b>c: print("max={}".format(b)) else: print("max={}".format(c))