Run ID:129182
提交时间:2025-08-22 15:10:24
a, b, c = map(int, input().split()) if a > b and a > c: max_num = a elif b > a and b > c: max_num = b else: max_num = c print("max={}".format(max_num)) # print("max={}".format( max(map(int,input().split())) )) # # a,b,c = input().split() # a = int(a) # b = int(b) # c = int(c) # # t = 0 # if a > b: # t = a # else: # t = b # if c > t: # t = c # # print("max={}".format(t))