Run ID:87096
提交时间:2024-08-03 21:43:57
def max_num(a,b): c=max(a,b) return c a,b=map(int,input().split()) print(max_num(a,b))