Run ID:141262
提交时间:2025-12-21 17:00:22
a,b,c=input().split() a=int(a) b=int(b) c=int(c) if a>b and a>c: print("max={}".format(a)) elif b>a and b>c: print("max={}".format(b)) else: print("max={}".format(c))